| strcat | R Documentation |
A fast implementation that combines two character values into a single string.
strcat(a, b)
a |
character value. |
b |
character value. |
If either 'a' or 'b' is a vector of length greater than 1, only the first element of each is concatenated.
A character string.
strcat("hello ", "world!")