fork download
  1. <?php
  2. $str = 'this is my gal_s, not my 1_s not 2_s not 3_s';
  3. $repl = preg_replace('/(?<!\bgal)_s/', '', $str);
  4. echo $repl."\n";
  5. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
this is my gal_s, not my 1 not 2 not 3