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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5686059903e2fca X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-12-03 06:50:22 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!nntp-relay.ihug.net!ihug.co.nz!newsfeed.media.kyoto-u.ac.jp!newsfeed.frii.net!newsfeed.frii.net!news.compaq.com!news.cup.hp.com!not-for-mail From: Charlie McCutcheon Newsgroups: comp.lang.ada Subject: Re: ada language Date: Tue, 03 Dec 2002 09:40:33 -0500 Organization: Compaq Message-ID: <3DECC261.5651FD87@SPAMhp.com> References: <4f6087a5.0212030105.43712e2b@posting.google.com> NNTP-Posting-Host: 16.29.224.146 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.72 [en] (Windows NT 5.0; I) X-Accept-Language: en Xref: archiver1.google.com comp.lang.ada:31384 Date: 2002-12-03T09:40:33-05:00 List-Id: satish umakar wrote: > how to convert a array of characters(characters stored in a array read > from a file) to a string type. > thank u Type string is defined as an array of characters. You probably have what you need already. >From Compaq Ada's package STANDARD: type STRING is array(POSITIVE range <>) of CHARACTER; Charlie Compaq Ada