API strchar

From Warcraft Wiki
Jump to navigation Jump to search

Generate a string representing the character codes passed as arguments. Numerical codes are not necessarily portable across platforms.

s = string.char(i1, i2, ...)
s = strchar(i1, i2, ...)

Example

> = string.char(65,66,67)
ABC
> = string.char()  -- empty string
""