PHP: preg_match_all - çalışan bir RegEx yazılamıyor

0 Cevap php

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);

Ben yanlış ne yapıyorum?

0 Cevap