Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^2: regex needed with match operator (push for == map)

by Aristotle (Chancellor)
on Apr 28, 2003 at 13:56 UTC ( [id://253694]=note: print w/replies, xml ) Need Help??


in reply to Re: regex needed with match operator
in thread regex needed with match operator

And once you try to store the retrieved bits, you arrive at something like
my @name; push @name, m{ /(\w+) /foo\z }x for @FILES;
which, of course, is a map in disguise:
my @name = map m{ /(\w+) /foo\z }x, @FILES;

Makeshifts last the longest.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (2)
As of 2024-04-26 05:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found