tolower()

Converts the input string to lower case.

Syntax

tolower(value)

Parameters

NameTypeRequiredDescription
valuestringThe value to convert to a lowercase string.

Returns

If conversion is successful, result is a lowercase string. If conversion isn't successful, result is null.

Example

tolower("Hello") == "hello"