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.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,2ac407a2a34565a9,start X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.74.201 with SMTP id w9mr16625439pbv.0.1330460567176; Tue, 28 Feb 2012 12:22:47 -0800 (PST) Path: h9ni20163pbe.0!nntp.google.com!news1.google.com!postnews.google.com!b18g2000vbz.googlegroups.com!not-for-mail From: Will Newsgroups: comp.lang.ada Subject: Array Help? Date: Tue, 28 Feb 2012 12:15:11 -0800 (PST) Organization: http://groups.google.com Message-ID: <10615783-d4a9-4cbd-8971-53ba1100d6a0@b18g2000vbz.googlegroups.com> NNTP-Posting-Host: 134.240.18.64 Mime-Version: 1.0 X-Trace: posting.google.com 1330460567 21123 127.0.0.1 (28 Feb 2012 20:22:47 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 28 Feb 2012 20:22:47 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: b18g2000vbz.googlegroups.com; posting-host=134.240.18.64; posting-account=CZZpzgoAAAAoaHoNNp9zhY9EzQgEmxhU User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-Header-Order: HUALESNKRC X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.24) Gecko/20111104 Red Hat/3.6.24-3.el6_1 Firefox/3.6.24,gzip(gfe) Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-02-28T12:15:11-08:00 List-Id: Hello all, I am looking for your help again. I know how to refer to a certain index in an array. for example if some array A is (53,83,3,62,3,13) then A(4) = 62 but what if I wanted to go through an array and identify certain indexes by what they contain? In my particular case I need to identify the indexes that have numbers in them that do not end in 1 or 2. These numbers range from 1 to 4 digits. Any ideas on how I can do this? Thanks a bunch