[R] factor creation
Laurent Faisnel
laurent.faisnel at ariase.com
Fri Sep 12 10:16:37 CEST 2003
anne.piotet at urbanet.ch wrote:
> I do not find how to manipulate strings (I want to concatenete characters
> strings ("abkdas","chjw") into something like ("abkdas;chjw")what operators are
> available for strings manipulation and where do I find help??
Use the paste operator with specification of separator :
e.g. paste("abkdas","chjw",sep=";") will return string "abkdas;chjw"
Laurent
More information about the R-help
mailing list