删除php中单词之间的空格

时间:2015-01-03 08:54:49

标签: php regex string

如何在php中删除两个单词之间的空格。例如,'Hello World'应返回'HelloWorld'。 我尝试使用trim(),但它没有用。

5 个答案:

答案 0 :(得分:3)

您可以使用str_replace

$str = str_replace(' ', '', $str);

答案 1 :(得分:2)

你也可以这样做

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

答案 2 :(得分:1)

trim用于删除字符串开头和结尾的空格。看here

try it

preg_replace("/\s+/", "", $str);

答案 3 :(得分:0)

完整代码:

$string="Hello World";
$string = str_replace(' ', '', $string);

答案 4 :(得分:0)

试试这个:

function space_trim($st) {
        return @str_replace(" ","",$st);
    }
    echo space_trim("   a fff     jjj    ");