Searching multiple files for multiple words

前端 未结 2 567
不思量自难忘°
不思量自难忘° 2020-12-25 11:48

I have to search trough a huge amount of .txt files. I know I can do multiple words search, but here\'s my problem. I want my results to only be the .txt<

相关标签:
2条回答
  • 2020-12-25 12:17

    If you are using Notepad++ editor (like the tag of the question suggests), you can use the great "Find in Files" functionality.

    Go to Search > Find in Files (Ctrl+Shift+F for the keyboard addicted) and enter:

    • Find What = (test1|test2)
    • Filters = *.txt
    • Directory = enter the path of the directory you want to search in. You can check Follow current doc. to have the path of the current file to be filled.
    • Search mode = Regular Expression
    0 讨论(0)
  • 2020-12-25 12:22

    If you are using Notepad++ editor Goto ctrl + F choose tab 3 find in files and enter:

    1. Find What = text1*.*text2
    2. Filters : .
    3. Search mode = Regular Expression
    4. Directory = enter the path of the directory you want to search in. You can check Follow current doc. to have the path of the current file to be filled.
    0 讨论(0)
提交回复
热议问题