strsplitΒΆ

strsplit splits a scalar string into a string vector of single characters.

svSplit = strsplit(ssString)

Return Value

svSplit is the string vector made from the characters of ssString.

Parameters

ssString

ssString is a scalar string to be separated into single characters.

Example

* strsplit("Hallo")'
H
a
l
l
o

id-323933