关于从r中的字符串中删除空格

时间:2012-09-25 16:11:45

标签: r

  

可能重复:
  How to remove all whitespace from a string in R?

我有一个像

这样的字符串
c<-"abc def gh"

我需要删除此字符串中的每个空格并获得......

c<-"abcdefgh"

r中怎么做?

2 个答案:

答案 0 :(得分:3)

使用gsub()

gsub(" ", "", c)
gsub("[[:space:]]", "", c)

答案 1 :(得分:1)

library(stringr)
str_replace_all(c, " ", "")