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