for %%a in ("123" "abc 12" "啊哈" "百度 一下") do findstr /c:"%%~a" file.txt>>new.txt利用for命令获取给定的值,然后一个一个传值给findstr进行处理。