对于某些人来说真的很简单,我知道这很简单,但我无法解决如何在Visual Studio 2008中使用正则表达式“在文件中查找”搜索来搜索两个匹配的字符串。 所以,如果我有线:
One twoo three four five
On tw three four five
One two thre fourr five
One two three fur five
我想搜索'two'和'four'(所以只返回第一行和第三行)。感谢。
答案 0 :(得分:2)
仅(?=.*two)(?=.*four)
怎么样?