string.lCase()

Converts the alphabetic characters in a string to lowercase.

string.lCase( )

Returns: String

This function does not take any arguments.

Examples

str="I LOVE Lucee";
	writeOutput(str.lcase());

See also