fork download
  1. <?php
  2.  
  3. $re = '/(?<=\D|^)\d{1,2}[wdhm]\b/';
  4. $str = "11w 22d 33h 44m\n";
  5. echo preg_match($re, $str, $matches);
Success #stdin #stdout 0.02s 24192KB
stdin
Standard input is empty
stdout
1