Skip to content
Reference > Methods

strLower(text)

Definition

String strLower(String text)

Description

Returns the text in lower case.

Parameter Definition

Name Type Description
text String The string to convert

Examples

1
2
3
4
String r1 = strLower("test"); // r1 == test
String r2 = strLower("This"); // r2 == this
String r3 = strLower("OUT"); // r3 == out
Object r4 = strLower(null); // r4 == null