in reply to Sorting of hash by value

my @name_by_size = sort { $devLst{$a} <=> $devLst{$b} || $a cmp $b } keys %devLst;

Replies are listed 'Best First'.
Re^2: Sorting of hash by value
by perlCrazy (Monk) on Jan 12, 2009 at 06:50 UTC
    Thanks all for prompt reply.