本帖最后由 qixiaobin0715 于 2023-11-6 17:08 编辑
- @echo off
- chcp 65001>nul
- (for /f "tokens=1*" %%i in (test.txt) do (
- if "%%j"=="" (
- echo,%%i
- ) else (
- for /f "tokens=1,2 delims=.第章" %%I in ("%%i") do (
- if "%%I"=="%%J" (
- echo,第%%I章 %%j
- echo,
- ) else (
- setlocal enabledelayed
- set m=%%I
- set /a n=m
- echo,%%i %%j
- if "%%I"=="!n!" echo,
- endlocal
- )
- )
- )
- ))>New-test.txt
- pause
复制代码
|