Jump to content

Compiling regular expressions once for reuse


alokito

Recommended Posts

I need to search many (thousands) of strings with the same regular expression. Is it possible to compile the regular expression once and reuse it in php as you can in python and java and perl? for instance , here's a good perl example from http://www.perl.com/doc/manual/html/pod/perlop.html:

foreach $pattern (@pattern_list) {
        my $re = qr/$pattern/;
        foreach $line (@lines) {
            if($line =~ /$re/) {
                do_something($line);
            }
        }
    }

Link to comment
Share on other sites

  • 2 weeks later...
Like this?
[code]<?php
$strings = array("here","are","thousands","of","strings","2006-08-07","blah","blah");
foreach($strings as $s) {
    if(ereg("([0-9]{4})-([0-9]{2})-([0-9]{2})",$s)) echo "<p>$s is in a date format.</p>";
}
?>[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.