fork download
  1. <?php
  2.  
  3. $delim = '|';
  4. $s = 'abc0|def0ghi0|ghi';
  5. '/(' . preg_quote($delim, '/') . ')(.*?)(' . preg_quote($delim, '/') . ')/s',
  6. function($m) { return $m[1] . str_replace('0', '', $m[2]) . $m[3]; },
  7. $s) . "\n";
  8. // => abc0|defghi|ghi
  9.  
  10.  
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
abc0|defghi|ghi