vote up 0 vote down star

Suppose this is the string:

The   fox jumped   over    the log.

It would result in:

The fox jumped over the log.

What is the simplest, 1-2 liner that can do this? Without splitting and going into lists...

flag

11  
Did you try anything yourself? – Gumbo Oct 9 at 21:51
4  
What is your aversion to lists? They are an integral part of the language, and " ".join(list_of_words) is one of the core idioms for making a list of strings into a single space-delimited string. – Paul McGuire Oct 9 at 23:32
2  
you ought to consider accepting one of the solutions that does the split and join... how come you don't want to use lists? Is it because you assumed that would be slower? It is really the best solution both in terms of speed and readability. very pythonic. – Tom Oct 10 at 2:54

5 Answers

vote up 4 vote down check
>>> import re
>>> re.sub(' +',' ','The     quick brown    fox')
'The quick brown fox'
link|flag
1  
This solution only handles single space characters. It wouldn't replace a tab or other whitespace characters handled by \s like in nsr81's solution. – Taylor L Oct 9 at 22:21
1  
That's true, string.split also handles all kinds of whitespaces. – jleedev Oct 10 at 7:55
vote up 4 vote down

Have to agree with Paul McGuire's comment above. To me,

         ' '.join(the_string.split())

is vastly preferable to whipping out a regex. My measurements (Linux, Python 2.5) show the split-then-join to be almost 5 times faster than doing the "re.sub(...)", and still 3 times faster if you precompile the regex once and do the operation multiple times. And it is by any measure easier to understand -- much more pythonic.

link|flag
vote up 3 vote down

Similar to the previous solutions, but more specific: replace two or more spaces with one:

>>> import re
>>> s = "The   fox jumped   over    the log."
>>> re.sub('\s{2,}', ' ', s)
'The fox jumped over the log.'
link|flag
vote up 6 vote down

foo is your string:

" ".join(foo.split())
link|flag
doesn't strip() only do leading & trailing spaces? – nsr81 Oct 9 at 21:53
2  
You mean split not strip right? – Chris Lutz Oct 9 at 21:54
sorry, meant split. it's a typo. – Taylor L Oct 9 at 21:54
5  
“Without splitting and going into lists...” – Gumbo Oct 9 at 21:57
1  
I ignored "Without splitting and going into lists..." because I still think it's the best answer. – Taylor L Oct 10 at 3:44
vote up 9 vote down
import re
s = "The   fox jumped   over    the log."
re.sub("\s\s+" , " ", s)
link|flag
2  
I'd tend to change that regex to r"\s\s+" so that it doesn't try to replace already-single spaces. – Ben Blank Oct 9 at 21:55
updated. thanks for pointing that out. – nsr81 Oct 9 at 21:56
2  
If you wanted that behavior, why not just "\s{2,}" instead of a workaround for not knowing moderately-advanced regex behavior? – Chris Lutz Oct 9 at 22:06

Your Answer

Get an OpenID
or

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