WoW:API strlower: Difference between revisions

m
Move page script moved page API strlower to WoW:API strlower without leaving a redirect
mNo edit summary
m (Move page script moved page API strlower to WoW:API strlower without leaving a redirect)
 
(5 intermediate revisions by 5 users not shown)
Line 1: Line 1:
  string.lower(s)
{{luaapi}}
Gets a string with all lower case letters instead of upper case.
  lowerS = string.lower(s)
lowerS = strlower(s)


Make uppercase characters lower case.
== 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!")
  > = string.lower("Hello, Lua user!")
  hello, lua user!
  hello, lua user!
[[Category:API Functions|strlower]]
[[Category:API String Functions|strlower]]
Anonymous user