I've hash of hash like this:
$hashtest{ 1 } = {
0 => "A",
1 => "B",
2 => "C"
};
For example, how can I take the value of B of hash{ 1 }?
$hashtest{'B'}{1}
|
|
|
|||
|
|
|
Others have provided the proverbial fish Perl has free online (and at your command prompt) documentation. Here are some relevant links: |
|||
|
|
|
According to your comment on other responses, you can reverse the hash (ie. exchange keys and values). But be carefull to do this only if you are sure there are no duplicate values in the original because this operation keep only one of them.
Output: 1 |
|||
|
|
|
Since you have used numbers for your hash keys, in my opinion, you should be using an array instead. Else, when reversing the hash, you will lose duplicate keys. Sample code:
Perl Data Structures Cookbook will help you understand the data structures in Perl. |
||||
|
|
|
If all of your keys are integers, you most probably want to deal with arrays and not hashes:
|
|||
|
|
|
|||||
|