I need to separate a sentence using (.) However, I came across numbers. How can I define a split(.) excluding points that are between numbers?
Example:
"I paid 1.000 dollars. Very expensive. But I think today it should be cheaper."
I got this:
I paid 1.
000 dollars.
Very expensive.
But I think today it should be cheaper.
But I need this:
I paid 1.000 dollars.
Very expensive.
But I think today it should be cheaper.