WoW:API strchar

Revision as of 12:15, 26 May 2006 by WoWWiki>Mikk (Use Lua/Libshortcut template. Change category from "LUA Functions" to "Lua functions".)

Lua/Libshortcut

string.char(i1, i2, ...)

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

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

Template:LUA