fork download
  1. <?php
  2.  
  3. ini_set('display_errors', 1);
  4.  
  5. $s = "123aa567bb-";
  6. if (preg_match_all('~( ?>\d+ \p{L}+)(?!-)~ux', $s, $m)) {
  7. echo $m[0] . "\n";
  8. } else { echo "No match for $s!\n"; }
  9.  
Success #stdin #stdout #stderr 0.02s 23512KB
stdin
Standard input is empty
stdout
Warning: preg_match_all(): Compilation failed: nothing to repeat at offset 2 in /home/u5IWhN/prog.php on line 7
No match for 123aa567bb-!
stderr
PHP Warning:  preg_match_all(): Compilation failed: nothing to repeat at offset 2 in /home/u5IWhN/prog.php on line 7