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=BAYES_00,DATE_IN_PAST_24_48, FORGED_GMAIL_RCVD,FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,d5b211b0c1ffcf3e X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Received: by 10.204.132.81 with SMTP id a17mr398117bkt.4.1339692796439; Thu, 14 Jun 2012 09:53:16 -0700 (PDT) Path: e27ni47952bkw.0!nntp.google.com!news1.google.com!postnews.google.com!z4g2000pbz.googlegroups.com!not-for-mail From: quiet_lad Newsgroups: comp.lang.ada Subject: Re: Practicalities of Ada for app development Date: Wed, 13 Jun 2012 03:28:41 -0700 (PDT) Organization: http://groups.google.com Message-ID: <64bf1da6-748e-4eaf-9360-971fb022d4d8@z4g2000pbz.googlegroups.com> References: <79c5c9f7-4b72-4990-8961-b3e2db4db79b@qz1g2000pbc.googlegroups.com> NNTP-Posting-Host: 173.60.202.188 Mime-Version: 1.0 X-Trace: posting.google.com 1339583321 423 127.0.0.1 (13 Jun 2012 10:28:41 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 13 Jun 2012 10:28:41 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: z4g2000pbz.googlegroups.com; posting-host=173.60.202.188; posting-account=P7XY3woAAADWVZ3Q8yfcXP4_h9XhQ8Kj User-Agent: G2/1.0 X-HTTP-UserAgent: Opera/9.80 (X11; FreeBSD 9.0-RELEASE amd64; U; en) Presto/2.10.229 Version/11.60,gzip(gfe) Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2012-06-13T03:28:41-07:00 List-Id: On Jun 9, 2:36=A0am, "Dmitry A. Kazakov" wrote: > On Sat, =A09 Jun 2012 11:25:05 +0200 (CEST), Nomen Nescio wrote: > > wrp wrote: > > >> I develop small to medium sized tools. Tasks are mostly limited to > >> text processing, database management, and simple visualization. > > > Ada is lousy for text/string manipulation. > > Which is good, because there practically is no task, which required text > string manipulation. You should parse strings in place without moving > anything except the cursor. The same applies to the formatted output. > > > The string library is feature-poor, so you'll find yourself writing bas= ic > > libraries for constructs that are included in many languages. > > The constructs which should probably be forbidden in first place. It is > amazing to see what programmers usually write in C++ or C# when faced > trivial problems of parsing some simple input. > > -- > Regards, > Dmitry A. Kazakovhttp://www.dmitry-kazakov.de I am curious about this: how parse string in place etc? What about say web apps?