tolower (s)

The tolower(s) function returns the string s in which all uppercase characters are converted to their lowercase equivalents. All other characters are passed unmodified.

This function returns a value of type Text.

Example

 tolower ("New York")
	 

Result: "new york"