LCASE: Converting a Character String to Lowercase

How to:

The LCASE function converts a character string value to lowercase. That is, capital letters are replaced by their corresponding lowercase values.

LOWER and LOWERCASE are identical to LCASE.


Top of page

x
Syntax: How to Convert a Character String to Lowercase
LCASE(arg)

where:

arg

character string

Is the value to be converted to lowercase.

This function returns a varying character string. The length is the same as the input argument.



Example: Converting a Character String to Lowercase

LCASE converts a character string to lowercase. This example,

LCASE('XYZ') 

returns xyz.


iWay Software