我有一个字符串列表,我必须将某个子字符串从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之后将所有内容更改为小写。
答案 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