%lcase() Function

Top  Previous  Next

%lcase() function converts all the characters in the given string to lowercase and returns the result.

Syntax:

%lcase(string)
 

string

The string whose characters to be converted to lowercase

 

Examples:

%lcase('USER NAME')        %// Result: user name

 

See @ucase()