in reply to Re^2: Array of hash sorting problem
in thread Array of hash sorting problem

Try this things.....
foreach $hash ( @aoh) { my %new = reverse (%{$hash}); foreach ( sort {$a <=> $b } keys (%new )) { print " $new{$_} :$_ \n "; } print "-------------\n"; }