p(..., sep = " ", collapse = NULL) p0(..., collapse = NULL)
... | one or more R objects, to be converted to character vectors. |
---|---|
sep | a character string to separate the terms. Not
|
collapse | an optional character string to separate the results. Not
|
A string of the pasted values.
p0
: Paste0
p("The", "red")#> [1] "The red"p0("ard", "vark")#> [1] "ardvark"