<?php
    $str = 'this is my gal_s, not my 1_s not 2_s not 3_s';
    $repl = preg_replace('/(?<!\bgal)_s/', '', $str);
    echo $repl."\n";
?>