大神,请教一个问题。 批处理 .bat findstr里的多种查询条件怎么写
@echoofffor/f"tokens=*delims="%%ain('dir/s/b*.xml')do(type"%%a"|findstr"abcd"&&echo%%...
@echo off
for /f "tokens=* delims=" %%a in ('dir /s /b *.xml') do (type "%%a"|findstr "a b c d" &&echo %%a>>ok.txt)
pause 其中的findstr条件为a or b and c or d也就是包含a或者b的同时需要有c或d 展开
for /f "tokens=* delims=" %%a in ('dir /s /b *.xml') do (type "%%a"|findstr "a b c d" &&echo %%a>>ok.txt)
pause 其中的findstr条件为a or b and c or d也就是包含a或者b的同时需要有c或d 展开
2013-10-13
展开全部
for /f "tokens=* delims=" %%a in ('dir /s /b *.xml') do (type "%%a"|findstr "a"&&type "%%a"|findstr "b"&&type "%%a"|findstr "c"&&type "%%a"|findstr "d"&&echo %%a>>ok.txt)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-13
展开全部
((a or b)and(c or d))说实话我没学过批处理的语言...看大概能看懂写就没戏了...但是判断条件应该没区别吧大概就是字符串查找 0.0?换行都不换的啊.....就这样吧........编程的肿么跑到动漫来了具体语句你还是自己搞定吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询