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

Re: filtering an array

by swampyankee (Parson)
on Sep 02, 2012 at 01:35 UTC ( [id://991223]=note: print w/replies, xml ) Need Help??


in reply to filtering an array

Well, what have you tried?

There is, of course, more than one way to do this. One way is to use grep:

my @after; @after = grep { !/[GT]/ } @positions;

which is, in essence,

my @after; foreach @positions { push(@after, $_) if (!/[GT]/); }

I tend to use parenthesis where perl's syntax doesn't require them, but that's just me. I find they frequently improve readability.


Information about American English usage here and here. Floating point issues? Please read this before posting. — emc

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-24 02:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found