标题: [文本处理] [已解决]批处理读取指定txt的下标 [打印本页]
作者: ANSL 时间: 2022-4-14 10:36 标题: [已解决]批处理读取指定txt的下标
读取1.txt的下标以下的内容并输出到2.txt里
1.txt内容:
[config]
AAAA
[DD]
BBBB
读取config下标的内容
读取示例:
AAAA
把结果写入到2.txt
作者: qixiaobin0715 时间: 2022-4-14 11:32
本帖最后由 qixiaobin0715 于 2022-4-14 11:36 编辑
未测试:- @echo off
- setlocal enbledelayedexpansion
- (for /f "delims=" %%a in (1.txt) do (
- set str=%%a
- if "!str:~,1!"=="[" (
- if "%%a"=="[config]" (
- set n=true
- ) else (
- set n=
- )
- ) else if defined n (
- echo,%%a
- )
- ))>2.txt
- pause
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |