TITLE(paste @@ Concatenate Strings)
USAGE(
paste(DOTS, sep=" ", collapse)
)
ALIAS(paste)
DESCRIPTION(
LANG(paste) converts its arguments to character strings,
and concatenates them (separating them by the string given by LANG(sep)).
If a value is specified for LANG(collapse), the values in the
result are then concatenated into a single string, with the
elements being separated by the value of LANG(collapse).
PARA
The concatenated value is returned as the
value of LANG(paste).
)
SEEALSO(
LANG(LINK(substr)), LANG(LINK(nchar)), LANG(LINK(strsplit))
)
EXAMPLES(
paste(1:12) # same as  as.character(..)
paste("A", 1:6, sep='')
paste("Today is", system("date", TRUE))
)
