in reply to Re^2: Array of hash sorting problemin thread Array of hash sorting problem
foreach $hash ( @aoh) { my %new = reverse (%{$hash}); foreach ( sort {$a <=> $b } keys (%new )) { print " $new{$_} :$_ \n "; } print "-------------\n"; } [download]