http://qs321.pair.com?node_id=442643


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.