R语言字符串函数

#字符串连接:
paste() #paste(..., sep = " ", collapse = NULL)

#字符串分割:
strsplit() #strsplit(x, split, extended = TRUE, fixed = FALSE, perl = FALSE)

#计算字符串的字符数:
nchar()

#字符串截取:
substr(xstartstop)
substring(textfirstlast = 1000000)
substr(xstartstop) <- value
substring(textfirstlast = 1000000) <- value

#字符串替换及大小写转换:
chartr(oldnewx)
tolower(x)
toupper(x)
casefold(xupper = FALSE)

R语言字符串函数

上一篇:第二百三十七节,Bootstrap图标菜单按钮组件


下一篇:(转)基于Metronic的Bootstrap开发框架经验总结(4)--Bootstrap图标的提取和利用