在php中使用preg_replace删除php中的空格

时间:2012-07-18 13:26:34

标签: php regex preg-replace

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

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

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

但是这一个正在返回

+Example+Test+Test2

1 个答案:

答案 0 :(得分:5)

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

$output = preg_replace('/\\+\\s+/', '+', $input);