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,564a91823edb719c X-Google-Attributes: gid103376,public From: Simon Wright Subject: Re: CONTRAINT ERROR (was Re: parsing a string) Date: 2000/01/26 Message-ID: #1/1 X-Deja-AN: 578429009 X-NNTP-Posting-Host: pogner.demon.co.uk:158.152.70.98 References: <388095E5.6BF46237@cstc.org> <86mm2o$3cd$1@nnrp1.deja.com> <388ef706.1991756564@news.draper.com> <86n8r3$7ll$1@kimba.whitelion.org> X-Trace: news.demon.co.uk 949000704 nnrp-12:28245 NO-IDENT pogner.demon.co.uk:158.152.70.98 Organization: At Home Newsgroups: comp.lang.ada X-Complaints-To: abuse@demon.net Date: 2000-01-26T00:00:00+00:00 List-Id: blancolioni@blancolioni.org (Fraser) writes: > paene lacrimavi postquam rracine@myremarq.com (Roger Racine) scripsit: > > >The unbounded string Output_File_String can be of any length. The > >string Output_File is exactly 25 characters. The following will help: > > That still limits the length of the string. I'd be more inclined to > this: > > Get_Line (Output_File_String); > > declare > Output_File : String := To_String (Output_File_String); Or even Output_File : constant String := To_String (Output_File_String);