Converts a string into a list of character codes
(vl-string->list string)
A list, each element of which is an integer representing the character code of the corresponding character in string.
_$ (vl-string->list "")
nil
_$ (vl-string->list "12")
(49 50)
See Also
-
The vl-list->string function.