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.
我必须找到这样的例外:
找到:dt
预期结果:dt,blabladtblabla ...
除了:宽度
换句话说,我需要找到所有带有“dt”字符的字符串,除非字符串是“width”
在支持后视的正则表达式实现中,您可以使用
(?<!wi)dt|dt(?!h)
在javascript中你可以破解类似的东西
/^.?dt|(?!width)..dt/m.test( ' width' ); // false
你应该试试
环视正则表达式
请参阅此TextCrawler 论坛帖子
maybe something like this: /^(?!wi)dt|dt(?!h)/g;