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,3957a46660bc0588 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-10-11 23:27:25 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.mathworks.com!wn13feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!sccrnsc03.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: strings and multidimensional arrays References: <3F88E586.5060809@chartermi.net> X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.124.41 X-Complaints-To: abuse@comcast.net X-Trace: sccrnsc03 1065940043 12.234.124.41 (Sun, 12 Oct 2003 06:27:23 GMT) NNTP-Posting-Date: Sun, 12 Oct 2003 06:27:23 GMT Organization: Comcast Online Date: Sun, 12 Oct 2003 06:27:23 GMT Xref: archiver1.google.com comp.lang.ada:713 Date: 2003-10-12T06:27:23+00:00 List-Id: > Can I create a multi-dimensional array.. and then at say row (4) , > column (5) have an entirely new string built? A : array(1 .. 10, 1 .. 100) of string(1 .. 11); is a 2D array of 11 character strings, and you can say: A(4,5) := "hello world"; In general you can have an n-dimensional array of whatever, where whatever is a character, a string, a bounded string, an integer, a record, another array, etc. Take a look at www.adapower.com for links to books, paper and online, and tutorials, and of course lots of source code you can peruse for examples.