Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Stupid mistakes I repeatedly make

by nobull (Friar)
on Mar 27, 2005 at 17:02 UTC ( [id://442643]=note: print w/replies, xml ) Need Help??


in reply to Stupid mistakes I repeatedly make

my @array = map { s/regex/replacement/ } @input;

That's why I created the trivial function apply() that later found a home in Tassilo von Parseval's List::MoreUtils.

use List::MoreUtils qw(apply); my @array = apply { s/regex/replacement/ } @input;

Replies are listed 'Best First'.
Re^2: Stupid mistakes I repeatedly make
by Roy Johnson (Monsignor) on Mar 28, 2005 at 14:35 UTC
    Also implemented in Algorithm::Loops 'Filter', though it gives different results in scalar context.

    Caution: Contents may have been coded under pressure.

Log In?
Username:
Password:

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

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

    No recent polls found