WoW:API strchar

From AddOn Studio
Revision as of 04:47, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API strchar to API strchar without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW Lua

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, ...)

Examples

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