Board logo

标题: [其他] 批处理setlocal endlocal是否不影响标号? [打印本页]

作者: yiwuyun    时间: 2014-11-28 11:27     标题: 批处理setlocal endlocal是否不影响标号?

  1. :EchoN
  2. setlocal
  3. :start
  4. goto start
  5. endlocal
  6. exit /b 0
复制代码
setlocal是否不影响标号start? start仍然是全局的。
作者: CrLf    时间: 2014-11-28 11:59

会影响,批处理始终是顺序执行,前面的 setlocal 总是影响后面的语句
有一种例外,运行到脚本末尾、goto :eof或exit/b的时候会自动将当前函数或当前脚本产生的 setlocal 销毁
作者: yiwuyun    时间: 2014-11-28 13:10

:GetStringTrimSpace
setlocal
set string=!string!
call :GetStringLeftTrimSpace
set string=!stringLeftTrimSpace!
call :GetStringRightTrimSpace
set stringTrimSpace=!stringRightTrimSpace!
endlocal&set stringTrimSpace=%stringTrimSpace%
exit /b 0



:GetStringLeftTrimSpace
setlocal
set string=!string!
:startStringLeftTrimSpace
if "!string:~0,1!"==" " (
  set string=!string:~1!
) else (
  goto endStringLeftTrimSpace
)
goto startStringLeftTrimSpace
:endStringLeftTrimSpace
set stringLeftTrimSpace=!string!
endlocal&set stringLeftTrimSpace=%stringLeftTrimSpace%
exit /b 0



:GetStringRightTrimSpace
setlocal
set string=!string!
:startStringRightTrimSpace
if "!string:~-1,1!"==" " (
  set string=!string:~0,-1!
) else (
  goto endStringRightTrimSpace
)
goto startStringRightTrimSpace
:endStringRightTrimSpace
set stringRightTrimSpace=!string!
endlocal&set stringRightTrimSpace=%stringRightTrimSpace%
exit /b 0

这一段代码的作用是去掉字符串的左边和右边的空格。但是如果我把startStringLeftTrimSpace,startStringRightTrimSpace改成start
把endStringLeftTrimSpace,endStringRightTrimSpace改成end.我的代码运行就会出错。结果与自己要的不一样。这是什么原因喃?




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2