我已经阅读了许多有关使用不同方法来使Windows批处理文件解析器正确处理具有空格,括号和其他特殊字符的变量的主题,但是这些建议似乎都无法解决我遇到的问题。
这是脚本(尝试任何变通办法之前),其目标是根据为variable01和variable02找到的值为variable03设置值:
set variable01="C:\Program Files (x86)\SomeProgram\Subfolder"
set variable02="${macro}"
set variable01=%variable01:"=%
set variable02=%variable02:"=%
set variable03=""
if %variable02:~0,1%==$ (
if %variable01:~0,1%==$ (
set variable03=%variable03:"=%
) else (
set variable03=-o '%variable01%'
)
)
...预先不知道variable01和variable02的值-在运行脚本之前,它们已由另一个程序替换,因此上面的脚本显示了在进行替换后,variable01和variable02的一组示例值。
运行此脚本时出现的错误是:
\SomeProgram\Subfolder' was unexpected at this time.
...对应于上述脚本中的最后一个“设置”行。我认为此错误是由于variable01值的括号引起的。
如果我将该行更改为此:
set "variable03=-o '%variable01%'"
...然后我得到这个错误:
Files was unexpected at this time.
...这似乎表明它正在尝试对variable01中的空格进行标记化,而解析器仍然不满意。
如果然后在脚本顶部添加此行:
setlocal enableextensions enableDelayedExpansion
...然后将%variable01%更改为!variable01 !,我仍然遇到相同的错误。
显然,我不理解批处理文件解析器需要什么才能满足我对variable03的值具有以下值的要求:
-o 'C:\Program Files (x86)\SomeProgram\Subfolder'
...有什么建议?
最佳答案
问题在于variable01
的值中带有括号。由于它是在if
条件下扩展的,因此这些括号将被解释为流控制。通过始终使用双引号将其修复。
set variable01="C:\Program Files (x86)\SomeProgram\Subfolder"
set variable02="${macro}"
set variable01=%variable01:"=%
set variable02=%variable02:"=%
set variable03=""
if "%variable02:~0,1%"=="$" (
if "%variable01:~0,1%"=="$" (
set variable03=%variable03:"=%
) else (
call :set3 "%variable01%"
)
)
goto :eof
REM If it is important to have single quotes instead of double then
REM I found I had to call a subroutine. Otherwise the set could be
REM left up in the else.
:set3
set variable03=-o '%~1'
goto :eof
关于windows - 批处理文件变量,带空格和括号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15075799/