Reference > Methods
strUpper(text)
Definition
String strUpper(String text)
Description
Returns the text in upper case.
Parameter Definition
| Name |
Type |
Description |
| text |
String |
The string to convert |
Examples
| String r1 = strUpper("test"); // r1 == TEST
String r2 = strUpper("This"); // r2 == THIS
String r3 = strUpper("OUT"); // r3 == OUT
Object r4 = strUpper(null); // r4 == null
|