TXT文件批处理问题,按照行头的序号拆分成不同文件(按行头序号命名)

2025-04-03 18:57:07
推荐回答(1个)
回答1:

@echo off &setlocal enabledelayedexpansion
for /f "delims=" %%a in (test.txt) do (
set "line=%%~a"
set "no=!line:~0,2!"
echo.%%a >> !no!.txt
)