[R] Suppress blanks/spaces in character

2006-10-27 Thread thsudler
Hi all I'm have a character vector and would like to suppress the blanks if there are more than one after the other. Example: Character value is: "abc def ghi" The result should be: "abc def ghi" I know that it's possible to delete the leading blanks with the command "trim". But how can

Re: [R] Suppress blanks/spaces in character

2006-10-27 Thread jim holtman
> x <- "abc def ghi" > gsub(" +", " ", x) [1] "abc def ghi" > On 10/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi all > > I'm have a character vector and would like to suppress the blanks if there > are more than one after the other. > > Example: > > Character value is: "abc

Re: [R] Suppress blanks/spaces in character

2006-10-27 Thread Adrian Dragulescu
> c <- "abcdef ghi" > gsub(" +"," ", c) [1] "abc def ghi" > On Fri, 27 Oct 2006 [EMAIL PROTECTED] wrote: > Hi all > > I'm have a character vector and would like to suppress the blanks if there > are more than one after the other. > > Example: > > Character value is: "abc def ghi" > T

Re: [R] Suppress blanks/spaces in character

2006-10-27 Thread thsudler
Thank you very much... this command is exactly what I need. I only had something in the back of my mind that there is another command similar to trim to suppress blanks/spaces. But however, the gsub command works great... > c <- "abcdef ghi" > gsub(" +"," ", c) [1] "abc def ghi" > On F