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