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

Re^2: Selecting particular key-value pairs in hashes

by Aristotle (Chancellor)
on Sep 18, 2004 at 20:34 UTC ( [id://392041]=note: print w/replies, xml ) Need Help??


in reply to Re: Selecting particular key-value pairs in hashes
in thread Selecting particular key-value pairs in hashes

You can pick more than one value at a time out of a hash — see merlyn's code and gaal's remark.

my %hash2 = @hash{ grep /\d+_\d+/, keys %hash };

Update: thanks to bobf for notifying me that this code makes, uh, very little sense. Here's a hash slice incantation that actually works:

my %hash2; @hash2{ @$_ } = @hash{ @$_ } for [ grep /\d+_\d+/, keys %hash ]; # or more verbosely my %hash2; { my @key = grep /\d+_\d+/, keys %hash; @hash2{ @key } = @hash{ @key }; }

Makeshifts last the longest.

Log In?
Username:
Password:

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

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

    No recent polls found