sf_paste {stringfish} | R Documentation |
sf_paste
Description
Pastes a series of strings together
Usage
sf_paste(..., sep = "", nthreads = getOption("stringfish.nthreads", 1L))
Arguments
... |
Any number of character vector strings |
sep |
The seperating string between strings |
nthreads |
Number of threads to use |
Details
This works the same way as 'paste0(..., sep=sep)'
Value
A character vector where elements of the arguments are pasted together
See Also
paste0, paste
Examples
if(getRversion() >= "3.5.0") {
x <- letters
y <- LETTERS
sf_paste(x,y, sep = ":")
}
[Package stringfish version 0.16.0 Index]