使用正则表达式排除在 Dreamweaver 上查找

Find on Dreamweaver with regex exclusion

在 Dreamweaver 中,我试图找到没有这些表达式的单词 "none": display:nonedisplay = "none"

我最后一次尝试是:

([\w ]*)(?!display:|display = ")none([\w ]*) but it found all words "none"

在 Notepad++ 7.2.1 中,您可以使用负向回顾:

\b(?<!\bdisplay:)(?<!\bdisplay = ")none\b

将其与标记 功能一起使用,标记您需要查找和检查的所有事件。

详情:

  • \b - 前导词边界
  • (?<!\bdisplay:) - 在当前位置
  • 之前不能有display:整个单词
  • (?<!\bdisplay = ") - 在当前位置
  • 之前不能有display = "个完整的单词
  • none\b - 一个完整的单词 nonenone 后跟一个 \b 尾随单词边界)

见下方截图: