我有以下字符串+ Example + Test + Test2
并使用preg_replace我想获得以下结果+Example +Test +Test2
我一直在尝试使用以下代码
preg_replace("/\s*([\+])\s*/", "$1", $string)
但是这一个正在返回
+Example+Test+Test2
答案 0 :(得分:5)
$output = str_replace('+ ', '+', $input);
或
$output = preg_replace('/\\+\\s+/', '+', $input);