标签: r
可能重复: How to remove all whitespace from a string in R?
我有一个像
c<-"abc def gh"
我需要删除此字符串中的每个空格并获得......
c<-"abcdefgh"
r中怎么做?
答案 0 :(得分:3)
使用gsub():
gsub()
gsub(" ", "", c) gsub("[[:space:]]", "", c)
答案 1 :(得分:1)
library(stringr) str_replace_all(c, " ", "")