vote up 3 vote down star

How can I split by word boundary in a regex engine that doesn't support it?

python's re can match on \b but doesn't seem to support splitting on it. I seem to recall dealing with other regex engines that had the same limitation.

example input:

"hello, foo"

expected output:

['hello', ', ', 'foo']

actual python output:

>>> re.compile(r'\b').split('hello, foo')
['hello, foo']
flag

67% accept rate
it does not only /seem/ to not support it, it says so in the documentation... – hop Dec 30 '08 at 19:03
see also stackoverflow.com/questions/367155/… – hop Dec 30 '08 at 19:03

5 Answers

vote up 5 vote down check

(\W+) can give you the expected output:

>>> re.compile(r'(\W+)').split('hello, foo')
['hello', ', ', 'foo']
link|flag
Can you explain why? – Robert Gamble Dec 29 '08 at 20:47
Because it splits non-word characters, (in this case the whitespace and the comma...), and the capturing parentheses are used in pattern, so the text of the group in the pattern is also returned as part of the resulting list. – CMS Dec 29 '08 at 21:07
@CMS: You might want to mention the option for a re.U flag, or a "(?u)" prefix in the regex, since we live in a multilingual world. – ΤΖΩΤΖΙΟΥ Dec 31 '08 at 0:46
vote up 1 vote down

One can also use re.findall() for this:

>>> re.findall(r'.+?\b', 'hello, foo')
['hello', ', ', 'foo']
link|flag
vote up 0 vote down

Interesting. So far most RE engines I tried do this split.

I played a bit and found that re.compile(r'(\W+)').split('hello, foo') is giving the output you expected... Not sure if that's reliable, though.

link|flag
vote up 1 vote down

Ok I figured it out:

Put the split pattern in capturing parens and will be included in the output. You can use either \w+ or \W+:

>>> re.compile(r'(\w+)').split('hello, foo')
['', 'hello', ', ', 'foo', '']

To get rid of the empty results, pass it through filter() with None as the filter function, which will filter anything that doesn't evaluate to true:

>>> filter(None, re.compile(r'(\w+)').split('hello, foo'))
['hello', ', ', 'foo']

Edit: CMS points out that if you use \W+ you don't need to use filter()

link|flag
vote up 0 vote down

Try

>>> re.compile(r'\W\b').split('hello, foo')
['hello,', 'foo']

This splits at the non-word characted before a boundry. Your example has nothing to split on.

link|flag

Your Answer

Get an OpenID
or

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