DOWNCASE Function

Converts a string to all lower-case letters. Characters that are not upper-case letters remain unchanged.

Note: This function makes use of OCONV('exp','MCL') obsolescent.

Syntax

DOWNCASE(expression)

Syntax Elements

expression is any valid expression.

Example

X = 'ABc'
PRINT DOWNCASE(X)

Prints "abc".