I have for example a string \try Tester234 where I want to find the Word (partially with digits)
(RegEx => (\w|\d)) after the \try.
But a var_dump($match) outputs that:
array
  0 => 
    array
      empty
  1 => 
    array
      empty
preg_match_all('/^\\try ((\d|\w)*)/i', "\try Tester", $match);
What am I doing wrong?
 
     
    