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,c8a853b515609781 X-Google-Attributes: gid103376,public From: "David C. Hoos, Sr." Subject: Re: strings to floats/integers Date: 1998/08/26 Message-ID: <6s1g0t$lk6@hacgate2.hac.com>#1/1 X-Deja-AN: 384978531 References: <35e41033.9324314@200.223.0.87> <6s1e9k$bgq@sjx-ixn5.ix.netcom.com> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Organization: Hughes Aircraft Company Newsgroups: comp.lang.ada Date: 1998-08-26T00:00:00+00:00 List-Id: Richard D Riehle wrote in message <6s1e9k$bgq@sjx-ixn5.ix.netcom.com>... >In article <35e41033.9324314@200.223.0.87>, >The conversion between strings and float and strings and integers can >easily be accomplished using Ada.Text_IO. Note that for > > Ada.Text_IO.Integer_IO > and Ada.Text_IO.Float_IO > >there are Get and Put operations defined for conversion between strings >and the desired numeric type. Not only is this easy, it is also more >portable than some alternatives. For some odd reason, this feature of >Ada.Text_IO is frequently undiscovered, even by programmers who have >been using Ada for many years. > True enough, Richard, but I would only use an instance of a numeric io generic for the case where I wanted to control the output format. If I will accept exponential notation for floating output, I would use the 'image attribute. For all conversion from strings, I would use the 'value attribute. Am I missing something here? David C. Hoos, Sr.