LowerCase

Changes a string of characters to lowercase letters.

Syntax

LowerCase(string)
Minuscule(string)
string = string for which you want a lowercase version

Remarks

Characters that are already lowercase will not change.

To change a string to uppercase letters, see UpperCase.

Examples

LowerCase("HELLO") = "hello"
LowerCase("Yes") = "yes"

Classification

Strings