Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚开始学习正则表达式。
如何编写一个匹配两个未正确嵌套的 XML 标记(没有属性)的正则表达式(例如<a-tag>> another-tag> /a-tag another-tag) 您应该使用分组和反向引用。
<a-tag>> another-tag> /a-tag another-tag
我的努力:<(bo)\\s+?(.+?)>(.*?)</bo>
<(bo)\\s+?(.+?)>(.*?)</bo>
<(?:"[^"]*"['"]*|'[^']*'['"]*|[^'">])+>
如果您要查找字母“j”,请使用\bj\b.
\bj\b