gpt4 book ai didi

awk - 如果 AWK 中有特定字符,如何加入下一行?

转载 作者:行者123 更新时间:2023-12-04 14:44:55 24 4
gpt4 key购买 nike

在文本文件 (windows) 中我有:

sometexthere"
nothingtodohere
yessomethinghere"
etc

使用 AWK(在 Ubuntu 中)如何删除行尾的撇号 ",将其替换为分号 : 并加入下一行?

看起来像这样:

sometexthere:nothingtodohere
yessomethinghere:etc

最佳答案

这样:

awk '1' RS='"\n' ORS=':' yourfile

只需在 9 月创下您的记录。双引号加上换行符,以及您的输出记录 sep。连接字符。

对于 DOS 换行符 只需调整 regex:

awk '1' RS='"\r\n' ORS=':' yourfile

注意:1 是什么意思?

简答,这只是避免使用 print 语句的捷径。在 awk 中,当条件匹配时,默认操作是打印输入行,示例:

$ echo "test" |awk '1'
test

那是因为 1 永远是 true , 所以这个表达式等同于:

$ echo "test"|awk '1==1'
test
$ echo "test"|awk '{if (1==1){print}}'
test

关于awk - 如果 AWK 中有特定字符,如何加入下一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40541944/

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