文字列があるとします
$string = 'this is my gal_s, not my 1_s not 2_s not 3_s';
$find = '_s';
$replace = '';
戻りたいです
"this is my gal_s, not my 1 not 2 not 3"
だから言葉gal_s
は影響を受けない
これは可能ですか?
文字列があるとします
$string = 'this is my gal_s, not my 1_s not 2_s not 3_s';
$find = '_s';
$replace = '';
戻りたいです
"this is my gal_s, not my 1 not 2 not 3"
だから言葉gal_s
は影響を受けない
これは可能ですか?