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