Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Re: Re: (stephen) Hash Tutorial

by broquaint (Abbot)
on Apr 28, 2003 at 12:21 UTC ( [id://253661]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: (stephen) Hash Tutorial
in thread Hash Tutorial

What you want in your snippet there is a grep() not map() as you're filtering out items not applying transforms to them e.g
shell> perl -le '%a = qw/1 1 2 2 3 3/; %b = qw/2 2 3 3/; \ print grep !$b{$_}, keys %a' 1
Also note that the map() in your snippet is returning a list of three items - a 1 and two empty strings.
HTH

_________
broquaint

Replies are listed 'Best First'.
Re: Re: Re: Re: (stephen) Hash Tutorial
by !unlike (Beadle) on Apr 28, 2003 at 13:09 UTC

    Thanks broquaint
    I realised this just now and was about to post an update. But you beat me to it. :)

    !unlike

    I write my Perl code like how I like my sex: fast and dirty. ;)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (7)
As of 2024-04-24 11:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found