Syntax
string tolower ( string expr )
Description
tolower converts all upper case characters in the string to lower case. Leaves all other characters unchanged. The tolower function is frequently used in search and comparison expressions to make them case-insensitive.
Example
The following example accepts user inputs of "adrian", "Adrian", or "ADRIAN" and returns "adrian".
#this returns "adrian" tolower("Adrian");