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

时间:2016-03-04 23:04:34

标签: r gsub stringr

假设我使用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_"

3 个答案:

答案 0 :(得分:10)

尝试

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

+是一个特殊角色。你需要逃脱它。例如,与.相同。如果您使用Google regex或正则表达式,您会找到相应的特殊字符列表。例如,here +被描述为表示1 or more of previous expression。有关特殊字符,正则表达式和R的更多信息,请参见herehere

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

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

这里我使用的构造基本上可以读作[either this or that or something else],其中|对应or

答案 1 :(得分:2)

test<-gsub("+","_",test,fixed = TRUE)

归功于Jota

答案 2 :(得分:-1)

我也被困住了。以下代码为我工作。

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

但是,有一次它没有用。我尝试了Ian's solution。奏效了。