gpt4 book ai didi

regex - 使用 pcregrep 搜索模式

转载 作者:太空宇宙 更新时间:2023-11-04 09:48:21 25 4
gpt4 key购买 nike

我在文本文件中有以下模式。

######################
# ADD=123 New Comment
######################

if ($ADD==123)

除此之外,以下几行是可变的

# ADD=124 Old Comment

if ($ADD==1234)

我尝试使用 pcregrep 进行多行 greping,但我不擅长使用正则表达式。任何有关如何提取此模式的指示。

[root@srv admin]# pcregrep -M '######################\n#*\n' text.php

最佳答案

使用 sed:

sed -n '/###[#]*/,/if (\$ADD/{p}' input

关于regex - 使用 pcregrep 搜索模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13795877/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com