Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Compiling Regular Expressions

by hv (Prior)
on Feb 19, 2003 at 13:38 UTC ( [id://236621]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      for (@words) {
        print if /foo/;
      }
    
  2. or download this
      my $s = "foo";
      for (@words) {
        print if /$s/;
      }
    
  3. or download this
      my($s1, $s2) = qw/ foo bar /;
      for (@words) {
        print if /$s1/;
        print if /$s2/;
      }
    
  4. or download this
      my @s = qw/ foo bar /;
      for (@words) {
    ...
          print if /$s/;
        }
      }
    
  5. or download this
      my @s = map qr{$_}, qw/ foo bar /;
      for (@words) {
    ...
          print if /$s/;
        }
      }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (5)
As of 2024-04-18 07:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found