in reply to Re: HoH and accumulation
in thread HoH and accumulation
the results of adding this to total the values for the common keys always results in '0'? I have also tried creating a AoH instead but still have problems getting the correct accumalation... Here is the code for that.my %total; my %subhash; foreach my $subhash (values %all_files) { foreach my $key (keys %$subhash) { my $junk = $total{$key} + $subhash{$key}; print "$junk\n"; } }
either way what I would like to accomplish is for each common key within the hash (either below the main array or main hash) accumalate the value for common keys...? maybe I'm just brain dead at this point from looking at it too long... thanks...for my $i ( 0 .. $#AoH ) { for my $role (sort keys %{ $AoH[$i] } ) { my $tcount = $AoH[$i]{$role} + $AoH[$i]{$role}; print "$role=$tcount\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: HoH and accumulation
by tilly (Archbishop) on Jan 29, 2004 at 16:32 UTC |