textSplit (Utility)

Splits a text into a list of single Unicode Code Points.

Arguments

text
is a string to split.

Return values

list
is a builtin-list of code points.

Example

"Text" textSplit print LF print "Текст" textSplit print
Output:
( "T" "e" "x" "t" ) ( "Т" "е" "к" "с" "т" )