WoW:API strupper: Difference between revisions
Jump to navigation
Jump to search
(Use Lua/Libshortcut template. Change category from "LUA Functions" to "Lua functions".) |
({{luaapi}}) |
||
Line 1: | Line 1: | ||
{{ | {{luaapi}} | ||
Make all the lower case characters in a string upper case. | |||
string.upper(s) | string.upper(s) | ||
strupper(s) | |||
== Example == | |||
> = string.upper("Hello, Lua user!") | > = string.upper("Hello, Lua user!") | ||
HELLO, LUA USER! | HELLO, LUA USER! | ||