Re: Multi dimension arrays

2001-09-05 Thread brian d foy
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Gordon Barr) wrote: > Is there a way of handling these in perl? see the perldsc (data structures cookbook) man page. :) http://www.perldoc.com/perl5.6/pod/perldsc.html -- brian d foy <[EMAIL PROTECTED]> - Perl services for hire CGI Meta

Re: Multi dimension arrays

2001-09-03 Thread Pradeep Reddy
hi, You can simulate multi-dimensional arrays using references. For information about references see 'perlreftut' and 'perlref' manpages. eg. @array = ( [ "hello","world"]; [ "quick","brown"]; ); is a two dimentional array. if you want to acces

Multi dimension arrays

2001-09-03 Thread Gordon Barr
Is there a way of handling these in perl? (I am converting some programs from UNIX awk that make extensive use of this feature). Any advice would be much appreciated. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]