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,4f316de357ae35e9 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-08-02 07:05:34 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: dennison@telepath.com (Ted Dennison) Newsgroups: comp.lang.ada Subject: Re: FAQ and string functions Date: 2 Aug 2002 07:05:33 -0700 Organization: http://groups.google.com/ Message-ID: <4519e058.0208020605.5ab7e092@posting.google.com> References: <20020730093206.A8550@videoproject.kiev.ua> <4519e058.0207300548.15eeb65c@posting.google.com> <20020731104643.C1083@videoproject.kiev.ua> <4519e058.0208010629.5e6182ca@posting.google.com> <20020801194720.Q1080@videoproject.kiev.ua> NNTP-Posting-Host: 65.115.221.98 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1028297133 1199 127.0.0.1 (2 Aug 2002 14:05:33 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 2 Aug 2002 14:05:33 GMT Xref: archiver1.google.com comp.lang.ada:27613 Date: 2002-08-02T14:05:33+00:00 List-Id: Oleg Goodyckov wrote in message news:<20020801194720.Q1080@videoproject.kiev.ua>... > Saing onestly, I'm very surprized, that so basic and simple operation as > splitting/joining of string is not present in Ada natively. And most Well, stated that way, it *is* present. Splitting strings (or any other array) is done with slices, and joining them (any array) is done with the "&" operator. Those are indeed the basic operations available to arrays (along with indexing, and bounds attributes like 'first). As I understand it, your problem isn't with splitting and joining, its with figuring out where to do the splitting and joining. Correct? -- T.E.D. Home - mailto:dennison@telepath.com (Yahoo: Ted_Dennison) Homepage - http://www.telepath.com/~dennison/Ted/TED.html