in reply to how to put hash key and value in order

This is an FAQ, see How do I sort a hash (optionally by value instead of key)?.

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

  • Comment on Re: how to put hash key and value in order

Replies are listed 'Best First'.
Re^2: how to put hash key and value in order
by LanX (Saint) on Dec 20, 2012 at 03:01 UTC
    Have to say, this solution

          my @keys = sort { $hash{$a} <=> $hash{$b} } keys %hash;

    is better than mine, cause it tolerates duplicated values! :)

    Cheers Rolf