micompr (version 1.1.0)

pst: Concatenate strings without any separator characters

Description

Concatenate strings without any separator characters.

Usage

pst(...)

Arguments

...

one or more R objects, to be converted to character vectors.

Value

A character vector of the concatenated values without any separator characters.

Details

This function simply calls paste0 with the collapse option set to "".

Examples

Run this code
# NOT RUN {
micompr:::pst("a", "b", "c", c("a", "b", "c"))
# [1] "abcaabcbabcc"

# }

Run the code above in your browser using DataLab