set index=0 for %%b in (%%a) do ( set arr[!index!] = "%%b" set /a index += 1 ) echo %arr!0!% echo %arr[!0!]% echo %arr[0]% echo !arr[0]! for /l %%i in (0, 1, !index!) do ( echo !arr[%%i]! )
尝试了不同的回显方式,但仍然收到错误“回显已关闭”
需要一种打印数组索引的方法