我在同一个文件夹中有一个文本文件和一个批处理文件。其内容如下:
test.txt内容:
one,two
test.bat内容:
@echo off
for /f "delims=," %%a in (test.txt) do (echo %%a %%b)
pause >nul
运行test.bat时的输出是:
one %b
我希望并期望结果为:
one two
我不确定我的问题是什么。
答案 0 :(得分:2)
"tokens=1,2 delims=,"
如果未指出,则不再生成令牌