fork download
  1. <?php
  2.  
  3. $text = 'll the Lorem Ipsum ##generators## on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over ##200 Latin words##, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always ##free from repetition##, injected humour, or non-characteristic words etc.';
  4.  
  5. preg_match_all('/##[^#]+##/', $text, $matches, PREG_SET_ORDER);
  6.  
  7. for ($i = 0; $i < count($matches); $i++) {
  8. $text = preg_replace("/".$matches[$i][0]."/", "___".strval($i+1)."___" , $text, 1);
  9. }
  10.  
  11. echo $text;
  12.  
  13. ?>
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
ll the Lorem Ipsum ___1___ on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over ___2___, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always ___3___, injected humour, or non-characteristic words etc.