Jump to content

alokito

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

alokito's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. 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);             }         }     }
×
×
  • 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.