fyngd 当前离线
列兵
TOP
qixiaobin0715 当前在线
大校
@echo off (for /f "delims=" %%i in (a.txt) do ( set "str=%%i" call,set str=%%str:.zip=#%% for /f "delims=#" %%j in ('echo,%%str%%') do echo,%%j ))>New_a.txt pause复制代码
@echo off setlocal enabledelayedexpansion (for /f "delims=" %%i in (a.txt) do ( set "str=%%i" set "str=!str:.zip=#!" for /f "delims=#" %%j in ("!str!") do echo,%%j ))>New_a.txt pause复制代码