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.6 required=5.0 tests=BAYES_20,INVALID_MSGID,XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,bac902cf9fd6564b,start X-Google-Attributes: gid103376,public From: "Cameron McShane" Subject: Case Sensitivity Date: 2000/05/11 Message-ID: <958056490.47876@hearts.q-net.net.au>#1/1 X-Deja-AN: 622131036 Cache-Post-Path: hearts.q-net.net.au!unknown@cazza.aceonline.com.au X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-Complaints-To: usenet@news.interpacket.net X-Trace: news.interpacket.net 958056494 73763 203.91.64.133 (11 May 2000 14:48:14 GMT) Organization: Volvo Driver's Club JA! X-MSMail-Priority: Normal X-Cache: nntpcache 2.3.3 (see http://www.nntpcache.org/) NNTP-Posting-Date: 11 May 2000 14:48:14 GMT Newsgroups: comp.lang.ada Date: 2000-05-11T14:48:14+00:00 List-Id: Hey I am doing a project for Uni, and am a bit stuck. We need a menu that needs to be case-'in'sensitive. I am using an enumerated data type for the 3 menu options ie: type Menu_Options is (buy, read, done) If the user is to be allowed to enter Buy or BUY or bUy - etc, do I need to make the data type type Menu_Options is (buy, Buy, bUY, etc or is there a way of converting user input to all lower case? Any help Would be greatly appreciated. Cheers Cameron