标题: [文本处理] 批处理怎样节选一部分文本到另外一个文本里? [打印本页]
作者: 帝尊 时间: 2022-6-14 11:50 标题: 批处理怎样节选一部分文本到另外一个文本里?
有如下文本文件:
A的内容是
123
123
123
……
AAA
BBB
CCC
DDD
678
DFG
因为每次的文本行数都不一样,内容也不同,但是有固定的几个内容。
能否可以把AAA以及AAA下的3行内容复制到另外一个文本里?
作者: Batcher 时间: 2022-6-14 12:07
回复 1# 帝尊
test_1.bat- @echo off
- powershell "gc 1.txt | Select-String '^AAA$' -Context 3 | forEach{$_.Matches[0].Value, $_.Context.PostContext, ''}" > 2.txt
复制代码
作者: Batcher 时间: 2022-6-14 12:10
回复 1# 帝尊
test_2.bat
http://bcn.bathome.net/s/tool/index.html?key=grep- @echo off
- grep -A 3 "AAA" 1.txt > 2.txt
复制代码
作者: flashercs 时间: 2022-6-14 12:31
- @echo off
- setlocal enabledelayedexpansion
- cd /d "%~dp0"
- set ctr=
- (
- for /f "delims=" %%i in (A.txt) do (
- if not defined ctr (
- if "%%i"=="AAA" (
- set ctr=0
- echo %%i
- )
- ) else (
- set /a ctr+=1
- if !ctr! gtr 3 goto break
- echo %%i
- )
- )
-
- )>B.txt
- :break
- endlocal
- pause
复制代码
作者: 帝尊 时间: 2022-6-14 13:11
回复 4# flashercs
回复 3# Batcher
回复 2# Batcher
感谢两位大佬的回复。谢谢。
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |