WoW:API strlower

From AddOn Studio
Revision as of 04:47, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API strlower to API strlower without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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[edit]

s
String - The string to convert

Returns[edit]

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

Example[edit]

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