#字符串连接:
paste() #paste(..., sep = " ", collapse = NULL)
#字符串分割:
strsplit() #strsplit(x, split, extended = TRUE, fixed = FALSE, perl = FALSE)
#计算字符串的字符数:
nchar()
#字符串截取:
substr(x, start, stop)
substring(text, first, last = 1000000)
substr(x, start, stop) <- value
substring(text, first, last = 1000000) <- value
#字符串替换及大小写转换:
chartr(old, new, x)
tolower(x)
toupper(x)
casefold(x, upper = FALSE)
相关文章
- 12-19高阶函数复习:利用reduce和map把字符串转为数字
- 12-19R语言知识
- 12-198行代码的模板字符串替换函数
- 12-19C:应用于字符串处理函数
- 12-19Rust语言圣经12 - 字符串与切片
- 12-19R语言自适应LASSO 多项式回归、二元逻辑回归和岭回归应用分析
- 12-19R--基本统计分析方法(包及函数)
- 12-19python 字符串内建函数
- 12-19C语言函数指针
- 12-19R语言--自定义函数证明中心极限定理