删除两个字符串之间的所有行

发布于 2024-08-19 07:47:50 字数 319 浏览 5 评论 0原文

在 sh shell 脚本中。

给定文本文件中的数据:

string1  
string2 gibberish  
gibberish  
string3 gibberish  
string4  

如何使用 awk 或 sed 删除 string2 (包括)和 string3 (不包括 string3)之间的所有行)?

最终得到:

string1  
string3  
string4  

In a sh shell script.

Given data in a text file:

string1  
string2 gibberish  
gibberish  
string3 gibberish  
string4  

How could you use awk or sed to remove all lines between string2 (inclusive) and string3 (not including string3)?

to end up with:

string1  
string3  
string4  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

不及他 2024-08-26 07:47:51

string1、string2、string3 等是否分别位于不同的行?
在这种情况下,您可以使用 awk:

awk '/string2/{flag=1} /string3/{flag=0} !flag'

或 sed:

sed '/string3/p; /string2/,/string3/d'

Are string1, string2,string3, etc. each on different lines?
In that case, you can use awk:

awk '/string2/{flag=1} /string3/{flag=0} !flag'

or sed:

sed '/string3/p; /string2/,/string3/d'
温柔戏命师 2024-08-26 07:47:51

你可以试试这个。 “string2”之前的任何内容都不会被删除。

awk 'BEGIN{f=0}
{
    match($0,"string2")
    if(RSTART){
        print substr($0,1,RSTART-1)
        f=1
        next
    }
    match($0,"string3")
    if(RSTART){
        $0=substr($0,RSTART)
        f=0
    }
}
f==0{print}
' file

输出

$ cat file
string1 blah blah
text before string2 junk
gibberish
gibberis string3 text here
string4

$ ./shell.sh
string1 blah blah
text before
string3 text here
string4

you can try this. Anything before "string2" will not be deleted.

awk 'BEGIN{f=0}
{
    match($0,"string2")
    if(RSTART){
        print substr($0,1,RSTART-1)
        f=1
        next
    }
    match($0,"string3")
    if(RSTART){
        $0=substr($0,RSTART)
        f=0
    }
}
f==0{print}
' file

output

$ cat file
string1 blah blah
text before string2 junk
gibberish
gibberis string3 text here
string4

$ ./shell.sh
string1 blah blah
text before
string3 text here
string4
不乱于心 2024-08-26 07:47:51

以下内容将在 sed 中运行

sed  '
/string2/,/string3/bdeleting
b
:deleting
s/string3.*/string3/
/string3/b
d
'

假设我们匹配 string2 之后第一次出现 string3,则

The following will work in sed

sed  '
/string2/,/string3/bdeleting
b
:deleting
s/string3.*/string3/
/string3/b
d
'

presuming we are matching up to the first occurrence of string3 after string2

笑,眼淚并存 2024-08-26 07:47:51

下面是一个示例正则表达式替换:

s/string2.*?(?=string3)//sg

它将删除从 string2 到但不包括 string3 的所有内容。

Here's a sample regex substitution:

s/string2.*?(?=string3)//sg

Which will remove everything from string2 up to but not including string3.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文