标题: [文本处理] 批处理for语句嵌套使用应该注意些什么? [打印本页]
作者: local 时间: 2009-7-23 11:15 标题: 批处理for语句嵌套使用应该注意些什么?
上次问了一个提取文本特定内容的问题,于是我在此基础上使用for语句,通过提取另一个文本的内容作为判断条件来提取文本,结果要么程序框一闪而过,要么就报delims=" was unexpected at this time,我弄不清是不是使用for语句嵌套需要注意些什么,而我忽略了,还是其他地方出错了,麻烦各位帮我解释一下.
下面代码是我在lumiere给的代码的基础上加了一个for语句- echo off&setlocal enabledelayedexpansion
- ::所有判断条件都存放在test.txt文件中
- for /f "delims=" %%a in (test.txt) do (
- set var=%%a
- set /a count=0
- ::target.txt是被提取的文本,
- findstr /n "[" target.txt>>num.txt
- for /f "tokens=1-2 delims=[]" %%a in (num.txt) do (
- set /a count+=1
- if "%%b"=="!var!" set /a cal=0, skip=count,num=%%a 2>nul
- )
- for /f "skip=%skip% delims=" %%a in (num.txt) do set /a num2=%%a 2>nul
- for /f "skip=%num% delims=" %%i in (target.txt) do (
- echo %%i>>result.txt&set /a cal+=1,comp=cal+num+1
- if !comp! equ !num2! echo 您要的内容已成功提取!&goto end
- )
- )
- :end
- pause>nul
复制代码
test.txt内容
tt
abc:\
def@
target.txt内容
[abc:\]
*****
asdgg
[dfg]
lkh
[tt]
lkjj
###
[def@]
kdof还有一个问题就是如果把标号:end放在最后一个)和倒数第二个)之间,运行程序的话,就是程序框一闪而过,为什么会这样呢。拿到goto语句必须完全跳出for语句,仅仅跳出嵌套的for语句不行吗?
[ 本帖最后由 local 于 2009-7-23 11:17 编辑 ]
作者: local 时间: 2009-7-24 11:50
for语句可以用嵌套吗?
作者: Batcher 时间: 2009-7-24 12:39
for语句可以用嵌套
goto语句会完全跳出整个for
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |