2

我有以下字符串+ Example + Test + Test2并使用 preg_replace 我想得到以下结果+Example +Test +Test2

我一直在尝试使用以下代码

preg_replace("/\s*([\+])\s*/", "$1", $string)

但是这个回来了

+Example+Test+Test2
4

1 回答 1

5
$output = str_replace('+ ', '+', $input);

或者

$output = preg_replace('/\\+\\s+/', '+', $input);
于 2012-07-18T13:29:05.903 回答