josephworkman has asked for the wisdom of the Perl Monks concerning the following question:
for my $node (keys %{$exception_report}) { print "Exceptions for $node:\n\n"; for my $exception (keys %{$exception_report->{$node}}) { for my $file (keys %{$exception_report->{$node}{$exception}}) +{ while ( my ($metric, $value) = each %{$exception_report->{ +$node}{$exception}{$file}} ) { print "\t$exception : ($file) $metric = $value\n"; } } } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Help with better complex hash processing
by philcrow (Priest) on Sep 27, 2006 at 16:14 UTC | |
Re: Help with better complex hash processing
by jdporter (Paladin) on Sep 27, 2006 at 16:24 UTC | |
by josephworkman (Novice) on Sep 27, 2006 at 17:22 UTC | |
Re: Help with better complex hash processing
by pbeckingham (Parson) on Sep 27, 2006 at 16:05 UTC | |
by josephworkman (Novice) on Sep 27, 2006 at 16:08 UTC | |
Re: Help with better complex hash processing
by YuckFoo (Abbot) on Sep 27, 2006 at 18:46 UTC |