@lcase() Function

Top  Previous  Next

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

Syntax:

@lcase(string[, language-code])
 

string

The string whose characters to be converted to lowercase

language-code

The language code that implies to consider the national characters when converting them to lowercase. If it is omitted the language-code of the current page is used.

 

Examples:

@lcase('TIME')        @// Result: time

@lcase('TIME','tr')   @// Result: týme

 

See @ucase()