如何使用正则表达式匹配结束标记之前缺少的句点 (.)?
为了让自己清楚,这里有一个示例:
样品需要匹配:
1. text</… ></tag> ---> Where </...> is any tag and can be multiple end tags
2. text</tag>
不需要匹配的正确样本:
1. text.</...></tag>
2. text.</tag>
我想忽略这样的事情:
,</tag> --> Where , can be any punctuation except period (.)
或者
,</...></tag>
我希望有人可以帮助我非常感谢!