在Windows脚本中读取命令行参数时,有没有办法转义逗号字符?

时间:2015-04-24 12:00:11

标签: batch-file command-line scripting cmd command-line-arguments

我正在尝试从命令行读取多个输入参数。最后一个应该是逗号分隔的列表,但脚本只能读取逗号之前的第一个单词。

也就是说,当我调用脚本时:test.cmd a b c d,e,f
%4d,而我希望将其视为d,e,f

我已经找了很多资源来解决这个问题,但似乎Windows中的命令行参数无法被操纵(标记化等)并按原样传递给脚本。这是真的?从命令行读取输入时是否无法逃避?

2 个答案:

答案 0 :(得分:4)

引用您的参数,然后使用%~1%~2等检索它们。如果您执行test.cmd a b c "d,e,f"%~4将包含d,e,f

编辑:这是我在下面第二条评论中描述的解决方法:

@echo off
setlocal

echo 1: %~1
echo 2: %~2
echo 3: %~3

:loop
if not "%~4"=="" (
    if defined four ( set "four=%four%,%~4" ) else set "four=%~4"
    shift /4
    goto loop
)

echo 4: %four%

示例会话:

tokens

答案 1 :(得分:1)

以下方法允许您分隔以逗号分组的任意数量的参数:

@echo off
setlocal EnableDelayedExpansion

rem Get command line arguments
set "args=%*"
set n=0
for %%a in ("%args: =" "%") do (
   set /A n+=1
   set "arg[!n!]=%%~a"
)

echo Argument 4: %arg[4]%

rem Show all arguments given
echo/
for /L %%i in (1,1,%n%) do echo %%i- !arg[%%i]!

输出示例:

C:\> test.bat a b c d,e,f o,p,q,r x,y,z
Argument 4: d,e,f

1- a
2- b
3- c
4- d,e,f
5- o,p,q,r
6- x,y,z