Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: One line assigment statement with regex match

by jZed (Prior)
on Jun 22, 2005 at 21:49 UTC ( [id://469216]=note: print w/replies, xml ) Need Help??


in reply to Re: One line assigment statement with regex match
in thread One line assigment statement with regex match

That way will nicely return a list of lines that have at least one of the terms in them. A variant will return a list of terms that are found in at least one line:
my @matches = grep { my $term = $_; grep{ $_=~/$term/}@lines } @terms;
It's unclear from the description which of these (or something else) the OP wants.

Log In?
Username:
Password:

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

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

    No recent polls found