Given the following sentence:
The is 10. way of doing this. And this is 43. street.
I want preg_split to give this:
Array (
[1] => "This is 10. way of doing this"
[2] => "And this is 43. street"
)
I am using:
preg_split("/[^\d+]\./i",$sentence)
But this gives me:
Array (
[1] => "This is 10. way of doing thi"
[2] => "And this is 43. stree"
)
As you can see, last charachter of sentence is disappeared. I know why this happens, but I don't know how to prevent it from happening. Any ideas? Can lookaheads and lookbehinds help here? I am not really familiar with those.