in reply to Making a two dimensional hash with first row and column as the keys
The relevant line to change n toolic's code is this one:
Now,#$hash{$row}{$cols[$i+1]} = $vals[$i]; #toolic's $hash{"$row,$cols[$i+1]"} = $vals[$i]; #1-D version
The pitfall in this method is that some character or sequence of characters that cannot be in the row or column header names should be used to join the row,col names together. You want to guarantee that running together any row,col results in a unique name. This is usually not a problem and "," is often a good choice.foreach (sort keys %hash) { print "$_ $hash{$_}\n"; } __END__ prints: aaa,bar 456 aaa,baz 789 aaa,foo 123 bbb,bar 654 bbb,baz 321 bbb,foo 987
Have fun!
|
|---|