pracma (version 1.9.9)

strcat: String Concatenation

Description

Concatenate all strings in a character vector

Usage

strcat(s1, s2 = NULL, collapse = "")

Arguments

s1
character string or vectors
s2
character string or vector, or NULL (default)
collapse
character vector of length 1 (at best a single character)

Value

a character string or character vector

Details

Concatenate all strings in character vector s1, if s2 is NULL, or cross-concatenate all string elements in s1 and s2 using collapse as `glue'.

See Also

paste

Examples

Run this code
strcat(c("a", "b", "c"))                        #=> "abc"
strcat(c("a", "b"), c("1", "2"), collapse="x")  #=> "ax1" "ax2" "bx1" "bx2"

Run the code above in your browser using DataCamp Workspace