I'm breaking my head about following problem. I need to match dot in the word under certain condition.
Example:
D.A.R.Y.L. or se.ven or go/the will be untreated.
Dr. Odissey. or look, or look: will be treated.
I was using before:
([A-Z]+[.\\-/]+)+([A-Z]+[.\\-/]?)*
It was partially working, but it wouldn't distinguish for Dr. Odissey.
and so on.