lower
To output a string in lowercase
This function converts uppercase characters in a text to lowercase. Other characters stay untouched.
This can be useful for comparing strings or for correcting misspellings, for example in names, labels, or for temporarily unifying text for further processing.
Syntax
lower(string)
Return
string
Examples
Result: lower
Result: Yes (true
)
See also
upper
, which returns a string in uppercase.
Last updated