Previous topic

std

Next topic

strchar

This Page

strcatΒΆ

strcat concatenates the strings of a vector to one string. The elements are separated by a separator string.

ssString = strcat(smString, ssSeparator)

Return Value

ssString is a scalar string if smString is a vector and a vector if smString is a matrix. The matrix colums will be concatenated.

Parameters

smString

smString is a string matrix.

ssSeparator

ssSeparator is a scalar string.

Example

* strcat(["Cell1", "Cell2"], "; ")
Cell1; Cell2

id-610882