| Operator Type: | Function |
| Operator Scope of Action: | Item |
| Operator Purpose: | Formatting |
String.lowercase()
New to v5.9.0. Returns the target string, transforming all uppercase letters to lowercase.
The function can be chained to both string data and to string literals:
$MyString.lowercase()
"My NEW Title".lowercase()
The latter results in "my new title".
The trailing parentheses may be omitted:
$MyString.lowercase
Functionally equivalent to lowercase().
