Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Sort multivalued hash by value in array reference

by knobunc (Pilgrim)
on Feb 27, 2002 at 18:25 UTC ( [id://147992]=note: print w/replies, xml ) Need Help??


in reply to Sort multivalued hash by value in array reference

use strict; ... foreach my $user (sort { $user_hash{$a}[0] <=> $user_hash{$b}[0] } keys %user_hash) { my ($age, $height, $weight) = @{ $user_hash{$user} }; print "User $user (age $age, height $height, weight $weight)\n"; }

-ben

Log In?
Username:
Password:

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

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

      No recent polls found