3v4l.org

run code in 300+ PHP versions simultaneously
<?php $txt='28:Apr:2015 "This is an Example!"'; $re1='.*?'; # Non-greedy match on filler $re2='(?:[a-z][a-z]+)'; # Uninteresting: word $re3='.*?'; # Non-greedy match on filler $re4='(?:[a-z][a-z]+)'; # Uninteresting: word $re5='.*?'; # Non-greedy match on filler $re6='(?:[a-z][a-z]+)'; # Uninteresting: word $re7='.*?'; # Non-greedy match on filler $re8='(?:[a-z][a-z]+)'; # Uninteresting: word $re9='.*?'; # Non-greedy match on filler $re10='((?:[a-z][a-z]+))'; # Word 1 if ($c=preg_match_all ("/".$re1.$re2."/is", $txt, $matches)) { $word1=$matches[1][0]; print "($word1) \n"; }

preferences:
53.31 ms | 402 KiB | 5 Q