fork(2) download
  1. <?php
  2.  
  3. $re = '~{{.*?}}~s';
  4. $str = "This is {{some. test}} to see if I can remove spaces";
  5. echo preg_replace_callback($re, function($m) {
  6. return str_replace(" ", "", $m[0]);
  7. }, $str);
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
This is {{some.test}} to see     if I can remove spaces