gpt4 book ai didi

regex - 如何用sed替换包含特殊字符(&)的字符串或url?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:07:58 24 4
gpt4 key购买 nike

似乎 url 中的字符 & 给我带来了问题。我有一个名为 newurl.txt 的文件,其中每 15 分钟更新一次新的 url,文件中的 url 是这样的

url/edu/playlist.m3u8?st=newcode1&e=newcode2

我有另一个名为 replaceoldurl.txt 的文件,其中旧 url 需要从文件 newurl.txt 中替换

我的命令是:

cat /root/newurl.txt | xargs -I '{}' sed -r -- 's!url[^"[:space:]]+!{}!g' /root/replaceoldurl.txt

此命令确实有效,但它会将旧网址留在新网址旁边。更换后看起来像这样。

url/edu/playlist.m3u8?st=oldcode1url/edu/playlist.m3u8?st=oldcode1&e=oldcode2e=newcode2

对我来说,& 字符似乎是问题所在,因为它保留了旧的 url 而不是字符 &。虽然我试图转义 & 字符,但仍然不起作用。不知道,如何让它发挥作用。在这里搜索了很多问题,但没有一个回答是专门针对我的问题。

最佳答案

To me the & character seems to make the problem, because it leaves theold url instead of character &. Though I tried to escape the character&, but still doesn't work. No idea, how to make it work. Searched manyquestions here, but none of the answered specifically refers to myproblems.

没错,'&' 是一个特殊字符。作为引用,这里有一个来自 sed 手册的片段,它解释了“&”的行为。

s/regexp/replacement/

Attempt to match regexp against the pattern space. If successful, replace that portion matched with replacement. The replacement may contain the special character & to refer to that portion of the pattern space which matched, and the special escapes \1 through \9 to refer to the corresponding matching sub-expressions in the regexp.

你是如何转义'&'的?

您可以尝试修改您的 cat/sed 命令:

cat newurl.txt | sed 's/\&/\\\\&/g' | xargs  -I {} sed -r -- 's!url[^"[:space:]]+!{}!g' oldurl.txt

这里你有一些解释为什么你需要做 \\\\&:

$ cat newurl.txt 
url/edu/playlist.m3u8?st=newcode1&e=newcode2

$ cat newurl.txt | sed 's/\&/\\&/g'
url/edu/playlist.m3u8?st=newcode1\&e=newcode2

$ cat newurl.txt | sed 's/\&/\\&/g' | xargs -I {} echo {}
url/edu/playlist.m3u8?st=newcode1&e=newcode2

$ cat newurl.txt | sed 's/\&/\\\\&/g' | xargs -I {} echo {}
url/edu/playlist.m3u8?st=newcode1\&e=newcode2

如果您想内联更改,只需将“-i”选项传递给 sed,如下所示:

$ cat newurl.txt | sed 's/\&/\\\\&/g' | xargs  -I {} sed -r -i -- 's!url[^"[:space:]]+!{}!g' oldurl.txt    

关于regex - 如何用sed替换包含特殊字符(&)的字符串或url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34566907/

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