up vote 1 down vote favorite
1
share [g+] share [fb]

$data contains tabs, leading spaces and multiple spaces, i wish to replace all tabs with a space. multiple spaces with one single space, and remove leading spaces.

in fact somthing that would turn

Input data:
[    asdf asdf     asdf           asdf   ]

Into output data:
[asdf asdf asdf asdf]

How do i do this?

link|improve this question

feedback

5 Answers

up vote 5 down vote accepted
$data = trim(preg_replace('/\s+/g', '', $data));
link|improve this answer
You also forgot to mention trim to get rid of leading spaces. Probably want to mention ltrim too, since he asked for leading spaces then illustrated both ends. – Matthew Scharley Jul 25 '09 at 8:23
Yeah, thanks for pointing that. In the example it's shown that both leading and trailing spaces should be removed so I updated my code. – RaYell Jul 25 '09 at 8:27
feedback

Assuming the square brackets aren't part of the string and you're just using them for illustrative purposes, then:

$new_string = trim(preg_replace('!\s+!', ' ', $old_string));

You might be able to do that with a single regex but it'll be a fairly complicated regex. The above is much more straightforward.

Note: I'm also assuming you don't want to replace "AB\t\tCD" (\t is a tab) with "AB CD".

link|improve this answer
feedback

Trim, replace tabs and extra spaces with single spaces:

$data = preg_replace('/[ ]{2,}|[\t]/', ' ', trim($data));
link|improve this answer
feedback
$data = trim($data);

That gets rid of your leading (and trailing) spaces.

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

That turns any collection of one or more spaces into just one space.

$data = str_replace("\t", " ", $data);

That gets rid of your tabs.

link|improve this answer
feedback
$new_data = preg_replace("/[\t\s]+/", " ", trim($data));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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