For Loop IN列表中的变量-Windows批处理

时间:2019-05-16 04:54:15

标签: windows batch-file for-loop

由于其他要求,我必须使用变量作为值。因此,用For语句的IN列表内的变量替换了实际值。但是现在代码没有采用这些值。

set name=John
set place=US

for %%s in (
           %name%,%place%       
           ) 
do something

我验证了for循环语法here,但看不到该变量的任何选项。是否可以将变量用作循环的值集?

0 个答案:

没有答案