alokito Posted July 28, 2006 Share Posted July 28, 2006 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 https://forums.phpfreaks.com/topic/15935-compiling-regular-expressions-once-for-reuse/ Share on other sites More sharing options...
zq29 Posted August 7, 2006 Share Posted August 7, 2006 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 https://forums.phpfreaks.com/topic/15935-compiling-regular-expressions-once-for-reuse/#findComment-70583 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.