替换R中的子串

时间:2015-12-21 23:41:01

标签: r string

我有一个字符串列表,我必须将某个子字符串从caps更改为lowcaps。如何在R?

中有效地实现这一点

这是一个子列表:

>head(ID)

"1007_PM_S_AT"
"1053_PM_AT"  
"117_PM_AT"   
"121_PM_AT"    
"1255_PM_G_AT" 
"1294_PM_AT" 

我需要在PM之后将所有内容更改为小写。

1 个答案:

答案 0 :(得分:6)

一种选择是将tolower()包裹在sub()电话

R> test <- c("1007_PM_S_AT", "1053_PM_AT", "117_PM_AT", "121_PM_AT", "1255_PM_G_AT", "1294_PM_AT")
R> sub("pm", "PM", tolower(test))
[1] "1007_PM_s_at" "1053_PM_at"   "117_PM_at"    "121_PM_at"    "1255_PM_g_at" "1294_PM_at"  

可能有用的另一种替代方法(可能不太好)是使用替换函数regmatches<-

matches <- gregexpr('(?<=PM)(.+)', test, perl=TRUE)              # match the string after PM
regmatches(test, matches) <- tolower(regmatches(test, matches))  # replace with lower case