vote up 2 vote down star
1

How can you strip whitespaces in PHP's variable?

I know this comment PHP.net. I would like to have a similar tool like tr for PHP such that I can run simply

tr -d " " ""

I run unsuccessfully the function php_strip_whitespace by

$tags_trimmed = php_strip_whitespace($tags);

I run the regex function also unsuccessfully

$tags_trimmed = preg_replace(" ", "", $tags);
flag

Thank you for your answers! – Masi Aug 14 at 19:54

3 Answers

vote up 7 vote down check

To strip any whitespace, you can use a regular expression

$str=preg_replace('/\s+/', '', $str);
link|flag
3  
+1 because this removes all whitespace and not just spaces. – MitMaro Aug 14 at 19:41
vote up 2 vote down

If you want to remove all whitespaces everywhere from $tags why not just:

str_replace(' ', '', $tags);

If you want to remove new lines and such that would require a bit more...

link|flag
1  
if you don't assign the result to a variable, this would not actually do anything useful. – Paul Dixon Aug 14 at 19:43
vote up 3 vote down
$string = str_replace(" ", "", $string);

I believe preg_replace would be looking for something like [:space:]

link|flag

Your Answer

Get an OpenID
or

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