China_Angel 当前离线
列兵
setlocal enabledelayedexpansion set num=0 for /f "delims=;" %%i in (123.txt) do ( set _!num!=%%i set /a num+=1 echo !_num! )复制代码
cjiabing (甲兵时代)当前离线
荣誉版主
TOP
xxpinqz (YiFeng)当前离线
中校
@echo off&setlocal enabledelayedexpansion for /f "delims=;" %%i in (123.txt) do ( set /a num+=1 set "_!num!=%%i" for %%a in (!num!) do echo,!_%%a! ) pause复制代码