Board logo

标题: [文本处理] 批处理怎样节选一部分文本到另外一个文本里? [打印本页]

作者: 帝尊    时间: 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
  1. @echo off
  2. 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
  1. @echo off
  2. grep -A 3 "AAA" 1.txt > 2.txt
复制代码

作者: flashercs    时间: 2022-6-14 12:31

  1. @echo off
  2. setlocal enabledelayedexpansion
  3. cd /d "%~dp0"
  4. set ctr=
  5. (
  6. for /f "delims=" %%i in (A.txt) do (
  7.   if not defined ctr (
  8.     if "%%i"=="AAA" (
  9.       set ctr=0
  10.       echo %%i
  11.     )
  12.   ) else (
  13.     set /a ctr+=1
  14.     if !ctr! gtr 3 goto break
  15.     echo %%i
  16.   )
  17. )
  18. )>B.txt
  19. :break
  20. endlocal
  21. pause
复制代码

作者: 帝尊    时间: 2022-6-14 13:11

回复 4# flashercs
回复 3# Batcher
回复 2# Batcher

感谢两位大佬的回复。谢谢。




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2