in reply to Retrieving data from multidimensional hashes
If you can't handle multiple levels, do it level by level.
my $subhash = $hash{$x}; my $count = keys %$subhash;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Retrieving data from multidimensional hashes
by Back2Coding (Initiate) on Aug 11, 2008 at 19:20 UTC | |
by ikegami (Patriarch) on Aug 11, 2008 at 19:40 UTC |