Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Windows XP。
我的批处理(文件)代码有这样一行:
call echo %%x[%i%]%%
我想将此行的输出存储到一个变量中,我想知道是否有人可以告诉我该怎么做。
如果要将其存储到变量中,为什么要回显它?
这应该做的工作
call set myVar=%%x[%i%]%%