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);
            }
        }
    }

  • 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]

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.