次の文字列が+ Example + Test + Test2
あり、 preg_replace を使用して次の結果を得たいと思います+Example +Test +Test2
次のコードを使用しようとしています
preg_replace("/\s*([\+])\s*/", "$1", $string)
でもこいつは帰ってくる
+Example+Test+Test2
次の文字列が+ Example + Test + Test2
あり、 preg_replace を使用して次の結果を得たいと思います+Example +Test +Test2
次のコードを使用しようとしています
preg_replace("/\s*([\+])\s*/", "$1", $string)
でもこいつは帰ってくる
+Example+Test+Test2