How to match missing period (.) before end tag using regex?
To make myself clear, here's a sample:
Samples need match:
1. text</… ></tag> ---> Where </...> is any tag and can be multiple end tags
2. text</tag>
Correct samples that don't need to match:
1. text.</...></tag>
2. text.</tag>
and I want to ignore something like this:
,</tag> --> Where , can be any punctuation except period (.)
or
,</...></tag>
I hope someone can help me thanks alot!