Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の文字列があるスラッシュ間の単語を削除する必要があります。
This a test UP/PL/EX/TU 2013 this a test 2 MG/MF/RS/TB 2007
この出力が必要です
This a test 2013 this a test 2 2007
文字列は動的に、常に変化します。
正規表現で実行できますか?
より良い表現があると確信していますが、質問の文字列を考えると、これで十分かもしれません。
$string='This a test UP/PL/EX/TU 2013'; $output=preg_replace("/\s[\w\/]+\s/", " ", $string); echo $output;