标签: windows batch-file for-loop
由于其他要求,我必须使用变量作为值。因此,用For语句的IN列表内的变量替换了实际值。但是现在代码没有采用这些值。
IN
set name=John set place=US for %%s in ( %name%,%place% ) do something
我验证了for循环语法here,但看不到该变量的任何选项。是否可以将变量用作循环的值集?