Returns a copy of a string with all uppercase letters converted to lowercase. Alias for the standard library function string.lower
See also Lua library functions.
Signature:
lowerCase = strlower("s")
Arguments:
s- A string (string)
Returns:
lowerCase- A copy of the stringswith all uppercase letters converted to lowercase (string)
This function is defined in the Lua standard libraries