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.4 required=5.0 tests=BAYES_00,FROM_SUSPICIOUS_NTLD autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5dd0ea71e6c0e2b1 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 1995-02-27 04:09:03 PST Path: nntp.gmd.de!news.rwth-aachen.de!news.rhrz.uni-bonn.de!news.uni-stuttgart.de!rz.uni-karlsruhe.de!xlink.net!howland.reston.ans.net!news.sprintlink.net!EU.net!news2.EUnet.fr!edf3.edf.fr!newshost!pascalo From: pascalo@cln46ac.world (Pascal OBRY) Newsgroups: comp.lang.ada Subject: Re: Need help:Convert Number String to Integers? Date: 27 Feb 1995 11:02:50 GMT Organization: Direction des Etudes et Recherches EDF Message-ID: References: <1995Feb24.110451.5065@muvms6> NNTP-Posting-Host: cln46ac.der.edf.fr In-reply-to: mcclaug1@muvms6.wvnet.edu's message of 24 Feb 95 11:04:51 EDT Date: 1995-02-27T11:02:50+00:00 List-Id: Steven, It's easy, Ada provide the attribute Value that does what you want : v : Integer := Integer'Value ("144323433"); Image is the oposite attribute : s : String := Integer'Image (144323433); Pascal. -- --|--------------------------------------------------------------- --| Pascal OBRY e-mail: pascal.obry@der.edf.fr | --| EDF-DER-IPN-SID-ISI | --| Bureau G1-010 voice: +33-1-47.65.50.91 | --| 1 Av General de Gaulle | --| 92141 Clamart CEDEX | --| FRANCE | --|---------------------------------------------------------------