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.
基本上就是这样,
我有一些格式错误的标签,它们有两个class属性,这是破坏性的,
class
所以我需要通过并找到任何类似的标签,
我的 IDE 有一个正则表达式搜索,但我不知道我会在里面放什么,
正则表达式需要说,以单词开头并在遇到单词之前<有两个实例class>
<
>
我将如何编写该正则表达式?
我猜是这样的:
<[^<>]*(\bclass\b[^<>]*){2,}>