LOWER( ) Function

Returns a specified character expression in lowercase letters.

LOWER(cExpression)

Parameters

  • cExpression
    Specifies the character expression LOWER( ) converts.

Return Value

Character

Remarks

LOWER( ) converts all uppercase letters (A – Z) in the character expression to lowercase (a – z). All other characters in the character expression remain unchanged.

Example

STORE 'FOX' TO gcName
CLEAR
? LOWER(gcName)  && Displays fox

See Also

Reference

ISALPHA( ) Function

ISLOWER( ) Function

ISUPPER( ) Function

PROPER( ) Function

UPPER( ) Function

Other Resources

Functions