Learn R Programming

stringfish (version 0.16.0)

sf_paste: sf_paste

Description

Pastes a series of strings together

Usage

sf_paste(..., sep = "", nthreads = getOption("stringfish.nthreads", 1L))

Value

A character vector where elements of the arguments are pasted together

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)`

See Also

paste0, paste

Examples

Run this code
if(getRversion() >= "3.5.0") {
x <- letters
y <- LETTERS
sf_paste(x,y, sep = ":")
}

Run the code above in your browser using DataLab