Re: [R] append string to a string

2008-12-16 Thread Aval Sarri
On Wed, Dec 17, 2008 at 9:09 AM, Jörg Groß wrote: > hi, > > > I want to append a string to a string like; > > x <- c("abc") > append(x, "def") paste (x, "def", sep="") see ?paste HTH Aval __ R-help@r-project.org mailing list https://stat.ethz.ch/mail

Re: [R] append string to a string

2008-12-16 Thread David Winsemius
?paste On Dec 16, 2008, at 10:39 PM, Jörg Groß wrote: hi, I want to append a string to a string like; x <- c("abc") append(x, "def") so that I get for x: [1] "abcdef" not (!) [1] "abc" "def" How can I do that in R? __ R-help@r-project.or

[R] append string to a string

2008-12-16 Thread Jörg Groß
hi, I want to append a string to a string like; x <- c("abc") append(x, "def") so that I get for x: [1] "abcdef" not (!) [1] "abc" "def" How can I do that in R? __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-hel