fork(1) download
  1. <?php
  2.  
  3. $text = "сыр пыр мир тыр cыраже истаcырыч б , купыма, ботрыва";
  4. $regexp = "/[а-я]*[с]{1}[ы]{1}[а-я]*[ ]+/";
  5. $match = array();
  6.  
  7. preg_match($regexp, $text, $match);
  8. var_dump($match);
  9.  
  10. ?>
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
array(0) {
}