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
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
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]