gpt4 book ai didi

r - 如何从R中的字符串中删除+(加号)?

转载 作者:行者123 更新时间:2023-12-02 19:27:35 29 4
gpt4 key购买 nike

假设我使用 gsub 并希望从字符串中删除以下 (=,+,-) 符号并替换为下划线。

有人可以描述当我尝试使用带加号 (+) 的 gsub 时发生的情况吗?

test<- "sandwich=bread-mustard+ketchup"
# [1] "sandwich=bread-mustard+ketchup"

test<-gsub("-","_",test)
# [1] "sandwich=bread_mustard+ketchup"

test<-gsub("=","_",test)
# [1] "sandwich_bread_mustard+ketchup"

test<-gsub("+","_",test)
#[1] "_s_a_n_d_w_i_c_h___b_r_e_a_d___m_u_s_t_a_r_d_+_k_e_t_c_h_u_p_"

最佳答案

尝试

test<- "sandwich=bread-mustard+ketchup"
test<-gsub("\\+","_",test)
test
[1] "sandwich=bread-mustard_ketchup"

+ 是一个特殊字符。你需要逃避它。例如,与 . 相同。如果您搜索regex或正则表达式,您将找到相应的特殊字符列表。例如,here +被描述为指示1个或多个先前表达式。有关特殊字符、正则表达式和 R 的更多信息,请参阅 herehere .

更一般地说,可以使用以下方法更有效地编写上述代码:

 test<- "sandwich=bread-mustard+ketchup"
test<-gsub("[-|=|\\+]","_",test)
test
[1] "sandwich_bread_mustard_ketchup"

这里我使用了一个基本上可以读作[这个或那个或其他]的构造,其中|对应于

关于r - 如何从R中的字符串中删除+(加号)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35807677/

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