Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Arrays and grep problems

by Kenosis (Priest)
on Jan 24, 2014 at 19:43 UTC ( [id://1071986]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    /(?:Hello|world|today)/
    
  2. or download this
    /(?:Hello|world|today)/i
    
  3. or download this
    /(?:\bHello\b|\bworld\b|\btoday\b)/i
    
  4. or download this
    use strict;
    use warnings;
    ...
        print if /$regex/;
    }
    close $logFH;
    

Log In?
Username:
Password:

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

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

    No recent polls found