Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like a regex which will split a string at every "." except if the "." is preceded AND followed by an number. example:

"hello world.foo 1.1 bar.1" ==> ["hello world","foo 1.1 bar", "1"]

I currently have:

"(?<![0-9])\.(?!\d)" 

but it gives:

["hello world", "foo 1.1 bar.1"]

but its not finding the last "." valid.

share|improve this question

3 Answers

up vote 1 down vote accepted

Split on . if it is not preceded by a digit, or if it is not succeeded by a digit:

In [18]: re.split(r'(?<!\d)\.|\.(?!\d)', text)
Out[18]: ['hello world', 'foo 1.1 bar', '1']
share|improve this answer

That's because only one of those assertions have to fail for the whole expression to fail. Try this:

"(?<![0-9])\.|\.(?!\d)"
share|improve this answer

A non-| approach:

(?<![0-9](?=.[0-9]))\.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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