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

Re^4: A more elegant way to filter a nested hash?

by Veltro (Hermit)
on Jun 02, 2018 at 10:09 UTC ( [id://1215726]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        %other = slice(%$sounds, { qw(lizard duck) }); # or,
        %other = (%$sounds =~ sl/lizard duck/h);       # or,
        %other = %$sounds->{'lizard', 'duck'};         # or,
        %other = %{$sounds}{ qw(lizard duck) };        # trad'l
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (2)
As of 2024-04-19 20:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found