Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
No edit summary
 
({{luaapi}})
(6 intermediate revisions by 5 users not shown)
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 ==
Make all the lower case characters upper case.
 
 
 
> = string.upper("Hello, Lua user!")
 
> = string.upper("Hello, Lua user!")
 
HELLO, LUA USER!
 
HELLO, LUA USER!

Revision as of 22:43, 25 March 2010

Make all the lower case characters in a string upper case.

string.upper(s)
strupper(s)

Example

> = string.upper("Hello, Lua user!")
HELLO, LUA USER!