fork download
  1. <?php
  2. $text = <<<HEREDOC
  3. Мама , мыла : раму %
  4. The - mother = washen $ rooms
  5. HEREDOC;
  6. $re = "/\W+/u";
  7. var_dump( preg_split( $re, $text, -1, PREG_SPLIT_NO_EMPTY ) );
Success #stdin #stdout 0.02s 52480KB
stdin
Standard input is empty
stdout
array(7) {
  [0]=>
  string(8) "Мама"
  [1]=>
  string(8) "мыла"
  [2]=>
  string(8) "раму"
  [3]=>
  string(3) "The"
  [4]=>
  string(6) "mother"
  [5]=>
  string(6) "washen"
  [6]=>
  string(5) "rooms"
}