webCOMAND

#STRTOLOWER

Return a string with all uppercase characters converted to lowercase.  The input string contain UTF8 characters, which will be properly converted to lowercase.

Prototype

#STRTOLOWER($string) or #LC($string)

Parameters

  • string - The input string.

Return

 Returns the string with all uppercase characters converted to lowercase.

Example

#/ Lower: this is some text.
#LOCAL($Text, "This is SOME Text.")
Lower: #STRTOLOWER($Text)

Related

#STRTOUPPER