在Windows系统变量中,我有以下变量
x = 123 Data_123 = ddd:
如何将此变量作为批处理文件中的字符串
所以最后我想得到变量 "数据" _%x%,我将获得值ddd
我该怎么做
答案 0 :(得分:1)
@echo off
setlocal enabledelayedexpansion
set x=123
set data_123=hello
echo !data_%x%!
(another method没有延迟扩展:
call echo %%data_%x%%%