WoW:API strlower: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
(Use Lua/Libshortcut template. Change category from "LUA Functions" to "Lua functions".)
Line 1: Line 1:
{{:Lua/Libshortcut|strlower|string.lower}}
  string.lower(s)
  string.lower(s)


Line 6: Line 7:
  hello, lua user!
  hello, lua user!


 
{{LUA}}
----
{{WoW API}}

Revision as of 12:16, 26 May 2006

Lua/Libshortcut

string.lower(s)

Make uppercase characters lower case.

> = string.lower("Hello, Lua user!")
hello, lua user!

Template:LUA