Lower

Description

This function converts the string to lowercase.

Syntax

string Lower(string str)

Parameters

str

is the string that you want to convert to lowercase.

Return

Return the string that has been converted to lowercase.

Example

string str1$ = "ABCDE";
string str2$ = Lower(str1$)$;
str2$ = ;//should be "abcde";

See Also

Upper