vl-list->string

AutoCad AutoLISP Functions

 
vl-list->string
 
 
 

Combines the characters associated with a list of integers into a string

(vl-list->string  char-codes-list)

Arguments

char-codes-list

A list of non-negative integers. Each integer must be less than 256.

Return Values

A string of characters, with each character based on one of the integers supplied in char-codes-list.

Examples

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