Previous Topic: LogarithmNext Topic: Maximum


Lowercase

Returns the string that results from converting all characters to lowercase.

Syntax:

►►─── TOLOWER (string) ───────────────────────────────────────────────────────►◄

Invocation names:

TOLOWER

Parameters:

string

Specifies the string value on which the lowercase function is performed.

String can be:

Example:

In the example below, the lowercase function is used to convert all characters in the last name to lowercase:

Initial value:
    EMP-LNAME:  'LANCHESTER         '
Statement:
    compute new-emp-lname = tolower(emp-lname)
Returned string:
    'lanchester         '