characters

characters s -- produces a list of the characters in the string s.

The characters are represented by strings of length 1.

     i1 = characters "asdf"
     
     o1 = {"a","s","d","f"}
     
     o1 : List
     

See also String.

Go to main index.

Go to concepts index.