vote up 9 vote down star
1

Is there a function in python to split a string without ignoring the spaces in the resulting list e.g

s="This is the string i want to split".split() gives me this

s ['This', 'is', 'the', 'string', 'i', 'want', 'to', 'split']

i want something like; ['This',' ','is',' ', 'the',' ','string', ' ', .....]

flag

50% accept rate

4 Answers

vote up 32 vote down check
>>> import re
>>> re.split(r"(\s+)", "This is the string i want to split")
['This', ' ', 'is', ' ', 'the', ' ', 'string', ' ', 'i', ' ', 'want', ' ', 'to', ' ', 'split']

Using the capturing parentheses in re.split() causes the function to return the separators as well.

link|flag
This is a cleaner solution than the one I posted above. – rossp Sep 22 '08 at 7:10
vote up 3 vote down

I don't think there is a function in the standard library that does that by itself, but "partition" comes close

The best way is probably to use regular expressions (which is how I'd do this in any language!)

import re
print re.split(r"(\s+)", "Your string here")
link|flag
vote up 0 vote down

Not that I can see from the documentation, but if you use split(' '), then you will get blank elements for multiple spaces. You can then reconstitute the spaces into the list afterwards.

link|flag
vote up 0 vote down

The hard part with what you're trying to do is that you aren't giving it a character to split on. split() explodes a string on the character you provide to it, and removes that character.

Perhaps this may help:

s = "String to split"
mylist = []
for item in s.split():
    mylist.append(item)
    mylist.append(' ')
mylist = mylist[:-1]

Messy, but it'll do the trick for you...

link|flag
with an extra space that doesn't exist at the end... – Mez Sep 22 '08 at 8:38
I've just updated this code to remove the final space. That said, it's still not the best way to do it, just a way to do it :) – rossp Sep 24 '08 at 3:37

Your Answer

Get an OpenID
or

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