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,d25bdbf13c9589c X-Google-Attributes: gid103376,public From: dewar@cs.nyu.edu (Robert Dewar) Subject: Re: How to do case conversion? Date: 1996/08/11 Message-ID: #1/1 X-Deja-AN: 173527087 references: <320D5A34.41C67EA6@cs.cmu.edu> organization: Courant Institute of Mathematical Sciences newsgroups: comp.lang.ada Date: 1996-08-11T00:00:00+00:00 List-Id: Mike Shen said "I am trying to do case conversion in GNAT. Does anyone know a simple way to do it? I expected the Ada.Strings(.Maps) package to provide something for my purpose, but it doesn't." Well this is an Ada 95 question, not a GNAT question. The standard library routine Ada.Strings.Maps.Constants has exactly what you need, and what you might consider is how next time you can find that more easily than having to wait for someone to reply to you on a newsgroup. A simple method I find useful (you can obviously do better with fancy tools) is simply to grab a copy of the ASCII version of the RM, and search it with your favorite editor. I happened to know the answer to that question off the top of my head, but if I had not, I would have searched for Lower_Case, and found the reference in the RM almost immediately.