fork download
  1. <?php
  2.  
  3. $tweet = "RT @foRTunemagazine Comment here RT @foo Blah";
  4. $tag = ' {RT} ';
  5. $result = preg_replace("/RT(?=\s)/", $tag, $tweet);
  6.  
  7. var_dump($result);
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
string(53) " {RT}  @foRTunemagazine Comment here  {RT}  @foo Blah"