http://qs321.pair.com?node_id=190200


in reply to nested arrays

your question could be more clear, it would be especially helpful if you were to include some code for us to work with. check ybiC's homenode for a lot of good links on asking questions. That said, to put an arrayref into a hash, try:

use Data::Dumper; my @array1 = qw /foo bar baz/; my @array2 = qw /qux quux quuux/; my %hash; $hash{'array1'} = [@array1]; $hash{'array2'} = [@array2]; print Dumper %hash; print $hash{'array1'}[0];

Data::Dumper is really useful for examining your data structures, and is part of the core distribution of perl. The last line shows how you would access an individual element of the array. Also, check out Perl Datastructures Cookbook for more information on creating complex data structures, and perlref for information on using references in perl.

hth,
--au