Bat批处理中的 FIndstr用法

findstr:

1. 指定多个字符串和一个文件,打印找到的行:findstr "hello world" Test1.txt
2. 指定多个字符串和多个文件,打印找到的行:findstr "hello world" Test1.txt Test2.txt
3. 将"hello world"作为一个整体来查找:findstr /C:"hello world" Test1.txt--------这个比较关键,可以
4. 只打印文件中完全匹配字符串的行:findstr /C:"hello world" /X Test1.txt
5. 只打印不匹配的行:findstr /C:"hello world" /X /V Test1.txt
6. findstr中的字符串支持正则表达式,可以使用/R来指定,此时字符串编程正则表达式。findstr /R "world$" Test1.txt

你可能感兴趣的:(Bat批处理中的 FIndstr用法)