tolower

Converts the input text to lowercase.

Function

result = tolower(input)

Arguments

ArgumentData Type
inputstring
resultinteger

Comments

Text values should not be converted to upper or lower case for the sole purpose of comparing values in a case-insensitive manner as this can reduce performance and text comparisons are automatically case insensitive.

Examples

result = tolower('Falcon Heavy') /* result = 'falcon heavy' */