fork download
  1. <?php
  2.  
  3. $text = <<<EOF
  4. hЕllО wОrld
  5. МУУ ГООУО ОПП по Удмуртинской области объявляет конкурс на поставку кaнцелярских
  6. тoваров на сумму 100500 руб.
  7. EOF;
  8.  
  9. $regExp = '/\b(\w*([а-яё])?)([aceopykhbmt])((?(4)|[а-яё])\w*)\b/ui';
  10. //$matches = [];
  11.  
  12. $text = preg_replace($regExp, '$1[$3]$4', $text);
  13. echo $text;
  14. // preg_match_all($regExp, $text, $matches);
  15. // print_r($matches);
  16.  
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
[h]ЕllО wОrld
МУУ ГООУО ОПП по Удмуртинской области объявляет конкурс на поставку к[a]нцелярских
т[o]варов на сумму 100500 руб.