Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Re: comparing array elements to hash keys

by dvergin (Monsignor)
on Jul 03, 2003 at 19:53 UTC ( [id://271273]=note: print w/replies, xml ) Need Help??


in reply to Re: comparing array elements to hash keys
in thread comparing array elements to hash keys

I was going to suggest:
my @ary2 = grep {defined} @hash{@ary};
It's tempting to just say   my @ary2 = @hash{@ary}.   But the values in @ary that don't match keys in %hash produce undefined values that have to be weeded out.

Here's a quick demo:

#!/usr/bin/perl -w use strict; my @ary = ('a', 'c', 'g', 'l'); my %hash = (a => 1, b => 2, c => 3, d => 4); my @ary2 = grep {defined} @hash{@ary}; print "[$_]\n" for @ary2;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-23 06:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found