fork download
  1. <?php
  2. $input = 'sdfsdf sdfsdf fd<%MYSTRING123%>d12df fsdsgsg d';
  3. preg_match_all('/<%MYSTRING\\d+%>/', $input, $matches);
  4. var_dump($matches);
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
array(1) {
  [0]=>
  array(1) {
    [0]=>
    string(15) "<%MYSTRING123%>"
  }
}