由于 Echo 关闭,无法读取批处理脚本中的数组索引

问题描述 投票:0回答:0

 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]! )

尝试了不同的回显方式,但仍然收到错误“回显已关闭”

需要一种打印数组索引的方法

windows batch-file cmd
© www.soinside.com 2019 - 2024. All rights reserved.