WoW:API strlower

From AddOn Studio
Revision as of 13:55, 27 June 2007 by WoWWiki>Ravas (Updated to match the API boilerplate.)
Jump to navigation Jump to search

Lua/Libshortcut

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!

Template:LUA