in reply to Getting Keys From Hash In a Hash
Like this:
You can also check perldsc. or **Specifically: Access and Printing of a HASH OF HASHESmy %form; my %field = ( 'key 1' => 'value 1', 'key 2' => 'value 2', ); $form{another_hash} = \%field; for my $first_key ( keys %form ) { for my $hoh_keys ( keys %{ $form{$first_key} } ) { print $hoh_keys, $/; ## get the keys } }
produces..use Data::Dumper; ... print Dumper \%form;
** Updates.$VAR1 = { 'another_hash' => { 'key 2' => 'value 2', 'key 1' => 'value 1' } };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Getting Keys From Hash In a Hash
by HalNineThousand (Beadle) on Aug 08, 2013 at 19:25 UTC |