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=-0.4 required=5.0 tests=AC_FROM_MANY_DOTS,BAYES_00 autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,9e91bd3f3ee80c47 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!border1.nntp.dca.giganews.com!nntp.giganews.com!cyclone1.gnilink.net!spamkiller2.gnilink.net!gnilink.net!trndny01.POSTED!0f19ed38!not-for-mail From: "Frank J. Lhota" Newsgroups: comp.lang.ada References: <426cb55e$0$30475$ba620e4c@news.skynet.be> Subject: Re: reverse Integer'image(someString); X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-RFC2646: Format=Flowed; Original Message-ID: Date: Mon, 25 Apr 2005 17:38:55 GMT NNTP-Posting-Host: 151.203.213.249 X-Complaints-To: abuse@verizon.net X-Trace: trndny01 1114450735 151.203.213.249 (Mon, 25 Apr 2005 13:38:55 EDT) NNTP-Posting-Date: Mon, 25 Apr 2005 13:38:55 EDT Xref: g2news1.google.com comp.lang.ada:10697 Date: 2005-04-25T17:38:55+00:00 List-Id: "Larry Kilgallen" wrote in message news:QU8dL4j3Ijoo@eisner.encompasserve.org... > It is required with Ada 83. Yes, but this restriction was removed in Ada 95. Moreover, even before Ada 95 there was a work-around for this: declare Init_Some_String : constant String := Integer'Image(Some_Integer); Some_String : String(Init_Some_String'Range) := Init_Some_String; begin ...play with Some_String end;