大地 当前离线
二级士官
hlzj88 当前离线
少校
@echo off&&setlocal enabledelayedexpansion for /f "delims=*" %%i in (1.txt) do ( set "foo=%%i" set foo=!foo:1=2! set foo=!foo:3=4! echo !foo! )复制代码
TOP
77七 当前在线
中校
@echo off rem 将 123E=%456 中 E=% 替换为 E=>% setlocal enabledelayedexpansion set "str=123E=%456" echo !str! set "str=!str:E=%=E=>%!" echo !str! endlocal pause复制代码