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.
如何编写正则表达式来查找所有包含 665 且没有 .pdf 的行
我似乎无法在正则表达式中找到如何做。如果重要,这适用于 Notepad++ 语法。
谢谢
如果.pdf仅在 之后发生665,则负前瞻断言665(?!.*\.pdf)应该可以正常工作。否则,我更喜欢使用两个正则表达式,一个匹配,一个失败。在 Perl 语法中,这将是:
.pdf
665
665(?!.*\.pdf)
/665/ && !/\.pdf/
您正在寻找的功能是前瞻模式