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