如何使用/不使用正则表达式搜索具有两个或三个单词的目录中的所有文件,例如我想搜索苹果和ornages 我试过这个:
in the Find what -> apple.*oranges
也使用reg ex
in the Find what -> ^(apple & oranges) also ^(apple && oranges)
但是虽然存在包含两者的文件但是无法找到。 或者规则也没有用。
Here is an example on Notepad++ ,
tried both apple.*oranges as well as ^(apple && oranges)
答案 0 :(得分:0)
您的匹配条件是多行?
如果是这样,它看起来不像Textpad支持多行正则表达式匹配,这将为您提供两个选项。
编辑 - 要使用的正则表达式为apples.*oranges
这匹配字符串apples
后跟任何字符(可选),然后跟oranges
匹配,并选中.
选项以匹配新行意味着搜索工作结束多行。
这也会匹配applesoranges,因为*
表示0或更多匹配,如果您需要至少一个字符,则可以将*
更改为+
。