Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Multiple regex against files with speed

by crabbdean (Pilgrim)
on Apr 28, 2004 at 13:06 UTC ( [id://348807]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $found = 0;
    $hash{1} = '*.doc';
    ...
    map {
         $found = 1 if $file =~ /$_/;
    } values(%hash);
    
  2. or download this
    $found = 0;
    $hash{1} = '*.doc';
    ...
         $string .= $_ . "|";
    }
    $found = 1 if $file =~ /$string/;
    

Log In?
Username:
Password:

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

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

    No recent polls found