in reply to Re: regex needed with match operator
in thread regex needed with match operator
which, of course, is a map in disguise:my @name; push @name, m{ /(\w+) /foo\z }x for @FILES;
my @name = map m{ /(\w+) /foo\z }x, @FILES;
Makeshifts last the longest.
|
|---|