strcat concatenates the strings of a vector to one string. The elements are separated by a separator string.
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 is a string matrix.
ssSeparator is a scalar string.
Example
* strcat(["Cell1", "Cell2"], "; ")
Cell1; Cell2
See also
id-610882