fork download
  1. <?php
  2. $text = <<<EOF
  3. London - столица Англии.
  4. EOF;
  5.  
  6. $regexp = "/([а-яё]*)([apocex]+)([а-яё]*)/ui";
  7.  
  8. $result = preg_replace($regexp, "$1[$2]$3", $text);
  9.  
  10. echo $result;
  11.  
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
L[o]nd[o]n - столица Англии.