vl-string->list
 
 
 

Converts a string into a list of character codes

(vl-string->list  string)

Arguments

string

A string.

Return Values

A list, each element of which is an integer representing the character code of the corresponding character in string.

Examples

_$ (vl-string->list "")
nil
_$ (vl-string->list "12")
(49 50)
See Also