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.
lower(string)
string
1
lower("LOwER")
Result: lower
1
contains(lower("With Ninox you can build great databases"), lower("DATABASE"))
Result: Yes (
true
)Last modified 8mo ago