fork download
  1. <?php
  2.  
  3. $re = '~[mwf]|th?|su?~';
  4. $str = "mwftthssu";
  5. preg_match_all($re, $str, $matches);
  6. print_r($matches[0]);
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Array
(
    [0] => m
    [1] => w
    [2] => f
    [3] => t
    [4] => th
    [5] => s
    [6] => su
)