gpt4 book ai didi

regex - 如何从字符串中删除单引号等特殊字符?

转载 作者:太空宇宙 更新时间:2023-11-04 04:33:23 24 4
gpt4 key购买 nike

我尝试使用 Sed,但没有成功。基本上,我有一个字符串:-

输入:-

'http://www.google.com/photos'

所需输出:-

http://www.google.com

我尝试使用 sed 但无法转义 ' 。我所做的是:-sed 's/\'//' | sed 's/照片//'

sed 对于照片有效,但对于 ' 则无效。请提出解决方案。

最佳答案

通过解决方法可以在 sed 中转义 ' :

sed 's/'"'"'//g'
# |^^^+--- bash string with the single quote inside
# | '--- return to sed string
# '------- leave sed string and go to bash

但是对于这项工作你应该使用 tr:

tr -d "'"

关于regex - 如何从字符串中删除单引号等特殊字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42613683/

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