Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a sentence like this.

1 $nbsp;     2     3   4

As you see, in between 1 2 and 3 text, there are extra spaces. I want the output with only one space between them. so my output will be 1 2 3 4

How can i use php trim to get the output like this. If i use trim, it can only remove whitespace, but not that  

Thanks.

share|improve this question

4 Answers

up vote 2 down vote accepted
$str = "1 $nbsp;     2     3   4";
$new_str = str_replace(" ", '', $str);
share|improve this answer
Thus delegating the work of whitespace stripping to the browser? – Duncan Mar 26 '10 at 4:39

Found this at php.net, works great

trim($str, chr(0xC2).chr(0xA0));

share|improve this answer
Did you notice missing parens? – Deele Mar 4 at 10:46
@Deele I don't always test my code, but when I do, I do it in production. – Tobias Fünke Mar 4 at 13:32

if your string actually has "  ",

$str="1       2     3   4";
$s = str_replace("  ","",$str);
print $s;
share|improve this answer
echo str_replace ( " ", "", "1       2     3   4" );

just remember you need to echo out the result of the str_replace and you alo dont need to worry about white spaces a the browser will only show one white space.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.