Combines the characters associated with a list of integers into a string
(vl-list->string char-codes-list)
A string of characters, with each character based on one of the integers supplied in char-codes-list.
_$ (vl-list->string nil)
""
_$ (vl-list->string '(49 50))
"12"
See Also
-
The vl-string->list function.