fork download
  1. <?php
  2.  
  3. $str = 'Синее. Море';
  4.  
  5. preg_match('/^\w+/u', $str, $match);
  6. var_dump($match);
  7. die('end');
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
array(1) {
  [0]=>
  string(10) "Синее"
}
end