Converts a string into a list of character codes
Supported Platforms: Windows and Mac OS
(vl-string->list str)
Type: String
A textual value.
Type: List or nil
A list, each element of which is an integer representing the character code of the corresponding character in str.
(vl-string->list "") nil (vl-string->list "12") (49 50)