Skip to contents

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

Value

A character vector where elements of the arguments are pasted together

Details

This works the same way as `paste0(..., sep=sep)`

See also

paste0, paste

Examples

if(getRversion() >= "3.5.0") {
x <- letters
y <- LETTERS
sf_paste(x,y, sep = ":")
}
#>  [1] "a:A" "b:B" "c:C" "d:D" "e:E" "f:F" "g:G" "h:H" "i:I" "j:J" "k:K" "l:L"
#> [13] "m:M" "n:N" "o:O" "p:P" "q:Q" "r:R" "s:S" "t:T" "u:U" "v:V" "w:W" "x:X"
#> [25] "y:Y" "z:Z"