WoW:API strlower

From AddOn Studio
Revision as of 22:41, 25 March 2010 by WoWWiki>Starlightblunder ({{luaapi}})
Jump to navigation Jump to search

WoW Lua

Gets a string with all lower case letters instead of upper case.

lowerS = string.lower(s)
lowerS = strlower(s)

Arguments

s
String - The string to convert

Returns

lowerS
String - The same string as passed in, but with lower case characters instead of upper case ones.

Example

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