Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

How do I sort a hash by its values?

by Anonymous Monk
on Feb 22, 2000 at 15:14 UTC ( [id://3860]=perlquestion: print w/replies, xml ) Need Help??

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

I have a hash containing error-codes from a web-server log, and a number as values. I would like to print them out sorted by the number. How do I do that?

Replies are listed 'Best First'.
Re: How do I sort a hash by its values?
by btrott (Parson) on Feb 22, 2000 at 22:38 UTC
    Read perlman:perlfaq4, "How do I sort a hash (optionally by value instead of key)?"

    But in short:

    @keys = sort { $hash{$b} <=> $hash{$a} } keys %hash;
    @keys now contains the sorted list of keys.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://3860]
Approved by root
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (3)
As of 2024-04-26 08:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found