strcat | R Documentation |
Concatenate all strings in a character vector
strcat(s1, s2 = NULL, collapse = "")
s1 |
character string or vectors |
s2 |
character string or vector, or NULL (default) |
collapse |
character vector of length 1 (at best a single character) |
Concatenate all strings in character vector s1
, if s2
is
NULL
, or cross-concatenate all string elements in s1
and
s2
using collapse
as ‘glue’.
a character string or character vector
paste
strcat(c("a", "b", "c")) #=> "abc"
strcat(c("a", "b"), c("1", "2"), collapse="x") #=> "ax1" "ax2" "bx1" "bx2"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.