gpt4 book ai didi

sed - 如何使用sed替换单引号((') with a backslash then single quote (\')?

转载 作者:行者123 更新时间:2023-12-04 03:54:01 28 4
gpt4 key购买 nike

如何使用sed将单引号(')替换为反斜杠,然后将单引号(\')替换?

sed s/\'/\\\'/

将无法工作,因为您永远都无法编写文字。
sed ":a;N;s/\'/\\'/g" <file1 >file2

由于反斜杠将不再转义引号,因此将其视为正则表达式引号将无法使用。

最佳答案

只是引用替换

$ echo \' | sed s/\'/"\\\'"/
$ \'

例如
$ cat text1
this is a string, it has quotes, that's its quality
$ sed s/\'/"\\\'"/ text1 > text2
$ cat text2
this is a string, it has quotes, that\'s its quality

关于sed - 如何使用sed替换单引号((') with a backslash then single quote (\')?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8070812/

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