LOWER

Syntax

LOWER (character_expression)

Description

Converts uppercase character data to lowercase.

Arguments

character_expression An expression of any data type that can be implicitly converted to a String.

Returns

The character_expression, converted to lowercase characters, in String format.

Examples

LOWER (MyEntity.ProductName) where ProductName = KNITTED GLOVES, PURPLE

Returns: knitted gloves, purple

LOWER ("Bicycle Tires")

Returns: "bicycle tires"

Related Topics

Text Functions

Data Conversion

UPPER