← WoW Lua
Gets a string with all lower case letters instead of upper case.
lowerS = string.lower(s) lowerS = strlower(s)
Arguments[edit | edit source]
- s
- String - The string to convert
Returns[edit | edit source]
- lowerS
- String - The same string as passed in, but with lower case characters instead of upper case ones.
Example[edit | edit source]
> = string.lower("Hello, Lua user!") hello, lua user!
Community content is available under CC-BY-SA unless otherwise noted.