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.
我正在尝试使用正则表达式来查找不以“.bar”结尾的单词“foo”的所有实例。
例如:
foo foo1 foo.bar
在上面的例子中,我想要“foo”和“foo1”,而不是“foo.bar”。此外,我希望使用 Notepad++ 的正则表达式功能来执行此操作,并且不确定正确的语法。
你可以试试这个正则表达式。它使用否定的前瞻来禁止字符串foo在后面跟着字符串匹配.bar。
foo
.bar
\bfoo(?!\.bar)