I have a simple RE question, I want to extract dots that are in between text, but not the dots that are between decimal numbers like 4454.54
. I need that to separate them from words ..
I created the following RE: [^\d+(.*?)+\d]
But it extracts the text that has dots in it!