R语言学习之基本文字处理代码

...
getwd()
setwd("")
is()
rm()
q()

字符串的处理常用代码

切割

strsplit()

子集

substr()

大小写

toupper()
tolower()

文字连接

paste()
paste0()

替代文字

gsub()

去除前后空格

strtrim()

举例

strsplit("hello,world",",")
substr("hello,world",start = 2,stop=4)
toupper("hello,world")
paste("hello","world",sep=":")
paste0("hello","world")
gsub("o|l","0","hello world")
...

你可能感兴趣的:(R语言学习之基本文字处理代码)