liumtz 当前离线
上等兵
setlocal enabledelayedexpansionfor %%i in ( "abc" "def" "ghi") do ( set str=%%i @echo !str!>>i.txt )pauseCOPY
zb848 当前离线
setlocal enabledelayedexpansionfor %%i in (abc,def,ghi) do ( set str=%%i @echo !str!>>i.txt )pauseCOPY
TOP
freesoft00 当前离线
六级士官
setlocal enabledelayedexpansionfor %%i in ( "abc" "def" "ghi") do ( set str=%%~i @echo !str!>>i.txt )pauseCOPY
评分人数
ai20110304 当前离线
一级士官
老刘1号 当前离线
论坛巡查
bbaa 当前离线
四级士官
set "str=%str:"=%"set "str=!str:"=!"COPY
ShowCode 当前离线
VIP1
@echo offsetlocal enabledelayedexpansion(for %%i in ( "abc" "def" "ghi") do ( set str=%%i echo !str:~1,-1!))>i.txtCOPY