WoW:API strlower

WoW Lua

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

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

ArgumentsEdit

s
String - The string to convert

ReturnsEdit

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

ExampleEdit

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