in reply to Re: how to put hash key and value in orderin thread how to put hash key and value in order
my @keys = sort { $hash{$a} <=> $hash{$b} } keys %hash;
is better than mine, cause it tolerates duplicated values! :)
Cheers Rolf