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-13 06:59:42 PST From: "Rodrigo Garcia" Newsgroups: comp.lang.ada References: <3F88D320.80706@chartermi.net> Subject: Re: strings and multidimensional arrays Date: Mon, 13 Oct 2003 15:59:28 +0200 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 NNTP-Posting-Host: lglpc31.epfl.ch Message-ID: <3f8aafcd@epflnews.epfl.ch> X-Trace: epflnews.epfl.ch 1066053581 128.178.76.8 (13 Oct 2003 15:59:41 +0200) Organization: EPFL Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!news.mailgate.org!news-zh.switch.ch!switch.ch!epflnews.epfl.ch!not-for-mail Xref: archiver1.google.com comp.lang.ada:776 Date: 2003-10-13T15:59:28+02:00 List-Id: Create a multi-dimensional array of access to string: procedure Multi is type String_Ptr is access String; type Multi_Array is array (Positive range <>, Positive range <>) of String_Ptr; A : Multi_Array (1..5, 1..5); begin A (4, 5) := new String'("Hello World"); end Multi; Rodrigo "Andrew" wrote in message news:3F88D320.80706@chartermi.net... > Is this possible: > Can I create a multi-dimensional array.. and then at say row (4) , > column (5) have an entirely new string built? > > basically having a string within a multi-dimensional array... > ? > and if this is possible what would be a good place to look for ideas on > how to do this? > thanks > Andrew >