Possible Duplicate:
How to remove all whitespace from a string in R?
I have a string like
c<-"abc def gh"
I need to remove every space from this string and get sth lik
c<-"abcdefgh"
How do that in r?
Possible Duplicate:
How to remove all whitespace from a string in R?
I have a string like
c<-"abc def gh"
I need to remove every space from this string and get sth lik
c<-"abcdefgh"
How do that in r?