Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: How to print key and value of hash in a list

by spazm (Monk)
on May 22, 2011 at 22:07 UTC ( [id://906207]=note: print w/replies, xml ) Need Help??


in reply to How to print key and value of hash in a list

values will return an array of values from a hash. The array will be in hash-sorted order.
Similarly keys will return an array of keys from a hash. The order of the two arrays will match.
my %hash = ( a=>1, b=>2, c=>3); my @v = values %hash; # e.g. ( 2, 3, 1 ) my @k = keys %hash; # e.g. ('b', 'c', 'a')

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (7)
As of 2024-03-28 21:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found