gpt4 book ai didi

regex - 从 R 中的字符串中删除反斜杠

转载 作者:行者123 更新时间:2023-12-02 09:32:18 28 4
gpt4 key购买 nike

我想从 list(\"TSPAN6\") 等字符串中删除 list(\" and \") 并得到TSPAN6。我尝试使用 grep 函数来做到这一点,但是我对包含字符串的反斜杠有疑问。我试过:

gsub('list(\\"','', "list(\"TSPAN6\")", fixed=T)

但它不起作用?!如果你能帮助我,我将不胜感激。

最佳答案

使用一个gsub

x <- c("list(\"TSPAN6\")")
x
[1] "list(\"TSPAN6\")"
gsub('list|[[:punct:]]', "", x)
[1] "TSPAN6"

关于regex - 从 R 中的字符串中删除反斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31728090/

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