[R] append string to a string

Aval Sarri aval.sarri at gmail.com
Wed Dec 17 04:48:23 CET 2008


On Wed, Dec 17, 2008 at 9:09 AM, Jörg Groß <joerg at licht-malerei.de> 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



More information about the R-help mailing list