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.