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.
我们想要搜索一个文件以查找所有前面没有“foo”的“bar”实例(忽略前面的空格和后面的任何内容。)
所以如果我们有
foo foo bar baz bar a bunch of monkeys
我们只会返回第 1 行和第 4 行
使用否定的lookbehind。模式如下所示:
(?<!foo )bar
由您决定“搜索文件”的含义。逐行阅读?