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,626f5d0e7c6ae5b8 X-Google-Attributes: gid103376,public From: Samuel Tardieu Subject: Re: HELP! Type conversion... Date: 1997/03/31 Message-ID: #1/1 X-Deja-AN: 229624789 Sender: tardieu@esmeralda.enst.fr References: <333EC876.47F9@uqtr.uquebec.ca> To: Dominic Mailhot Organization: TELECOM Paris Newsgroups: comp.lang.ada Date: 1997-03-31T00:00:00+00:00 List-Id: >>>>> "Dominic" == Dominic Mailhot writes: Dominic> Hi Everyone! I'm working on the gnat 3.09 Ada95 compiler... Dominic> I have problem with the types conversion... What's the Dominic> method to convert an integer to a character string and vice Dominic> versa...? Is it with a function like itoa and itoa in C or Dominic> with the notion of attributes..??? Maybe it's because I'm a Dominic> beginner with ADA.... Thank You! Integer I to String: Integer'Image (I) String S to Integer: Integer'Value (S) Sam -- Samuel Tardieu -- sam@ada.eu.org