Skip to content
Prev 139642 / 398506 Next

How does one do simple string concatenation?

have a look at the collapse argument in ?paste.

paste(paste(c("a","b","c"), collapse = ""), "d", sep = ""))

HTH,

Thierry

------------------------------------------------------------------------
----
ir. Thierry Onkelinx
Instituut voor natuur- en bosonderzoek / Research Institute for Nature
and Forest
Cel biometrie, methodologie en kwaliteitszorg / Section biometrics,
methodology and quality assurance
Gaverstraat 4
9500 Geraardsbergen
Belgium 
tel. + 32 54/436 185
Thierry.Onkelinx op inbo.be 
www.inbo.be 

Do not put your faith in what statistics say until you have carefully
considered what they do not say.  ~William W. Watt
A statistical analysis, properly conducted, is a delicate dissection of
uncertainties, a surgery of suppositions. ~M.J.Moroney

-----Oorspronkelijk bericht-----
Van: r-help-bounces op r-project.org [mailto:r-help-bounces op r-project.org]
Namens Ajay Shah
Verzonden: maandag 17 maart 2008 11:56
Aan: r-help
Onderwerp: [R] How does one do simple string concatenation?

How does one convert objects c("a","b","c") and "d" into "abcd"?

   > paste(c("a","b","c"), "d")
of course yields
   [1] "a d" "b d" "c d"