in reply to Re^7: Hash of Hash of Arrays
in thread Hash of Hash of Arrays
If you used the Dumper( $data ), commented out somewhere in the middle of the code, then you would have seen how the data is set. Based on that, you can change the code (after Dumper statement) to display what ever you wanted.# save all stored data if we see dashes line my $program = $hash->{Program} || ''; my $com_code = $hash->{JIRA} || $hash->{QA} || $hash->{DEV} + || ''; if ( $program && $com_code ) { push @{ $data->{ $program }{ $com_code }}, $hash; $hash = {}; }
Good luck.
|
|---|