[EMAIL PROTECTED] 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

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help

Reply via email to