Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So " xx yy 11 22 33 " will become "xxyy112233". How can I achieve this?

share|improve this question
which language are you using? – Ankit May 13 '11 at 12:51

1 Answer

up vote 23 down vote accepted

Lots of ways to do it. For example:

gsub(" ","", " xx yy 11 22 33 " , fixed=TRUE)
[1] "xxyy112233"

Edit: As noted by DWin in the comments, the fixed=TRUE part is not really necessary. It tells R that you are giving it a fixed string instead of a regular expression. You can make this substitution more general by using a regular expression with \s which removes all white-space including new-lines and tabs:

> gsub("\\s","", " xx yy 11\n22\t 33 ")
[1] "xxyy112233"

Here the first slash "escapes" the second one so that it is interpreted as a slash, and the string has a new-line and a tab character in addition to spaces.

share|improve this answer
@Aniko. Is there a reason you used fixed=TRUE? – DWin May 13 '11 at 12:57
@DWin Supposedly it is faster if R knows that it does not have to invoke the regular expression stuff. In this case it does not really make any difference, I am just in the habit of doing so. – Aniko May 13 '11 at 13:00
   
@Aniko. Thanks a lot! – waanders May 13 '11 at 13:04
Is there a difference between "[[:space:]]" and "\\s"? – Sacha Epskamp May 13 '11 at 13:56
3  
if you check on flyordie.sin.khk.be/2011/05/04/day-35-replacing-characters or just type in ?regex then you see that [:space:] is used for "Space characters: tab, newline, vertical tab, form feed, carriage return, and space." That's a lot more than space alone – Sir Ksilem May 13 '11 at 14:25
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.