String.toLowerCase()

Signature

String toLowerCase (String s1)

Domain

action, condition

Description

Converts all of the characters in the String passed to lower case using the rules of the default locale.

Parameters

NameTypeDescription
s1StringA String to convert to lower case.

Returns

TypeDescription
StringA String identical to the String passed in except that all chars have been converted to lower case.

Cautions

none

Example


String result = String.toUpperCase ("This is a test");

Result is:
result contains: "this is a test"