美文网首页科研信息学
R语言字符串截取

R语言字符串截取

作者: 落寞的橙子 | 来源:发表于2019-05-19 23:46 被阅读2次
library(stringr)
#col_names 为字符串集集合
new_names<-unlist(lapply(col_names, FUN = function(x) {return(substr(x,1,16))})) # 截取1:16的字符串

new_names<-unlist(lapply(col_names, FUN = function(x) {return(strsplit(x, split = ".tsv",fixed=T)[[1]][1])})) #以.tsv作为分割,截取之前的

相关文章

网友评论

    本文标题:R语言字符串截取

    本文链接:https://www.haomeiwen.com/subject/jwiczqtx.html