in reply to how do i sort values of a hash of hash
@sortedkeys = sort { $hash{$a} <=> $hash{$b} } keys %hash;
Good luck.
Extrapolate the above to what you need... Comment on Re: how do i sort values of a hash of hashDownload Code