API strlower
From WoWWiki
"strlower" is a shortcut for the standard Lua library function "string.lower". They can both be used interchangeably.
Gets a string with all lower case letters instead of upper case.
lowerS = string.lower(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!
This is a Lua function and documented as part of the World of Warcraft API
