摘要:
1.字符串替换 语法结构:%变量名:替换前=替换后% @set str=teh cat in teh hat @echo %str% @set str=%str:teh=the% @echo %str% >teh cat in teh hat >the cat in the hat 2.截取字符串 阅读全文
摘要:
IF ERRORLEVEL 1 ( command ) 与 IF %ERRORLEVEL% LEQ 1 ( command ) 等效 也就是 ERRORLEVEL 1 等效于 “大于等于” 环境变量的比较符号可以使用的有: ● EQU - 等于 ● NEQ - 不等于 ● LSS - 小于 ● LE 阅读全文