.. highlightlang:: us .. _strsplit: strsplit ======== .. index:: strsplit .. us.tag strsplit ENGLISH STR :ref:`strsplit` splits a scalar string into a string vector of single characters. .. function:: svSplit = strsplit(ssString) .. us.return **Return Value** *svSplit* is the string vector made from the characters of *ssString*. .. us.params **Parameters** .. uparam:: ssString *ssString* is a scalar string to be separated into single characters. .. us.example **Example** :: * strsplit("Hallo")' H a l l o .. seealso:: :ref:`overview-strings`, :ref:`sum`, :ref:`strextract` :sub:`id-323933`