无法从字符串中删除空格?

时间:2012-03-21 12:01:57

标签: php function text whitespace

  

可能重复:
  How to strip all spaces out of a string in php?

应该如此:

$text = 'This is the text with 3445';

我希望它是:

$trimmed = 'Thisisthetextwith3445';

3 个答案:

答案 0 :(得分:3)

你可以这样做:

str_replace(' ','',$text);

How to strip all spaces out of a string in php?中所述,您可以轻松找到它。

答案 1 :(得分:3)

$trimmed = str_replace(' ', '', $text);
echo $trimmed;

答案 2 :(得分:1)

  

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

删除一个或多个空格