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.

Possible Duplicate:
Replacing excess whitespaces

When I trim using PHP It just trim left and right side of PHP. Isn't their any function that remove more than 2 white spaces between a string?

Suppose I have this

"Stack       Overflow"

and I want this

"Stack Overflow"
share|improve this question

marked as duplicate by ceejayoz, zzzzBov, Brian Roach, Stephen, Graviton Nov 4 '11 at 8:03

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

How about this:

function fullTrim($str)
{
    return trim(preg_replace('/\s+/', ' ', $str));
}
share|improve this answer

You should do exactly what is described here: Replacing excess whitespaces Anyway, this question has been asked several times, you should have checked before submitting it.

share|improve this answer
Is preg_replace also perform ltrim n right trim what should i do in order to perform both operation in one go. – Rahul Singh Nov 3 '11 at 4:16
I would use preg_replace twice, one to do the right and left trim and the other two remove the excessive whitespaces, do you understand how to do the first operation? – lc2817 Nov 3 '11 at 4:18
yes..got it. I will modify it now. – Rahul Singh Nov 3 '11 at 4:20
@RahulSingh another solution is given by JRL – lc2817 Nov 3 '11 at 4:37
function customTrim($str)
{
   while(strpos($str,"  "))
   {
     $str = str_replace("  ", " ", $str);
   }
   return $str;
}

easy and understandable for beginners.

Regards

share|improve this answer

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