lowercase
stringConverts a string to lowercase (alias for tolower)
Syntax
lowercase(string) Parameters
string (string) The string to convert
Returns
string String converted to lowercase
Examples
Input:
lowercase("HELLO") Output:
"hello" Input:
lowercase("Hello World") Output:
"hello world" Input:
"TEST" | lowercase Output:
"test" The lowercase() function converts all characters in a string to lowercase. This is an alias for tolower().
Usage
Use lowercase() for case-insensitive comparisons, normalizing text data, or preparing strings for search operations.