WoW:API strchar: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Move page script moved page API strchar to API strchar without leaving a redirect) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{luaapi}} | |||
Generate a string representing the character codes passed as arguments. Numerical codes are not necessarily portable across platforms. | 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) | > = string.char(65,66,67) | ||
ABC | ABC | ||
> = string.char() -- empty string | > = string.char() -- empty string | ||
"" | |||
Latest revision as of 04:47, 15 August 2023
← 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[edit]
> = string.char(65,66,67) ABC > = string.char() -- empty string ""