Lower case | TEXT_LOWER_CASE

Syntax

TEXT_LOWER_CASE( [value] )

Parameters

value
The TEXT to be converted to lower case. If it is not a TEXT value, it will be converted to one with the STRING operation.

Return Value

A new TEXT with all the characters in VALUE converted to lower case.

Description

Convert a TEXT to lower case.

Examples

TEXT_LOWER_CASE("ABCD") # returns "abcd"
TEXT_LOWER_CASE("") # returns ""
TEXT_LOWER_CASE(null) # returns ""
TEXT_LOWER_CASE(1234) # returns "1234"