Skip to content

Lowercase

See Also: String Functions, Uppercase

Purpose

Lowercase returns a string with all its characters converted to lower case.

Return Type

String

Syntax

(Lowercase({string-value}))

What It Does

Lowercase changes all capital letters (A..Z) in the {string-value} to lowercase, leaving other characters unchanged.

Move (Lowercase("AEIOU812")) To sTitle

In this example, the string "aeiou812" is moved to the variable sTitle.

Notes

  • This function returns a value of type string. If the result of this function is moved to a variable of a type other than string, its value is converted to the destination type.

  • If {string-value} is of a type other than string, its value will be converted to a string for output.