From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,727dcca15457056e X-Google-Attributes: gid103376,public From: Matthew Heaney Subject: Re: HELP HELP HELP PLEASE Ordinal Function Date: 1998/12/14 Message-ID: #1/1 X-Deja-AN: 422001791 Sender: matt@mheaney.ni.net References: <36766e02.12725046@news.smartlink.net> NNTP-Posting-Date: Sun, 13 Dec 1998 19:55:44 PDT Newsgroups: comp.lang.ada Date: 1998-12-14T00:00:00+00:00 List-Id: John_Lin@paramount.com (Johnny) writes: > Does anybody know the function to get the ASCII # for symbols in > ADA95? Thnx declare C : Character := ...; begin := Character'Pos (C); end; You can go the other way by using Character'Val ();