Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在变量中做类似 ecranning 引号之类的事情吗?例如,
if "%1"=="/?" goto :help
如果参数是“将返回错误
试试"%~1"。波浪号修饰符将从 中去除引号%1(如果存在)。
"%~1"
%1
不幸的是,没有通用的安全方法来处理批处理文件中带有特殊字符(引号、括号、插入符号)的字符串。无论你写什么,总有一些案例会炸毁。