fork download
  1. <?php
  2.  
  3. $string = '123456789mytext23424kjfjhkjdhfgkj123456789mytext nmfdfmng';
  4. $pattern ='/([0-9]{9})([a-zA-Zа-яА-Я]+)/i';
  5. $replacement = '123412341www';
  6.  
  7. echo preg_replace($pattern, $replacement, $string);
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
123412341www23424kjfjhkjdhfgkj123412341www nmfdfmng