String.toLowerCase()
Signature
String toLowerCase (String s1)
Domain
action, condition, query
Description
Converts all of the characters in the String passed to lower case
using the rules of the default locale.
Parameters
Name | Type | Description |
s1 | String | A String to convert to lower case. |
Returns
Type | Description |
String | A String identical to the String passed in except that all
chars have been converted to lower case. |
Example
String result = String.toUpperCase ("This is a test");
Result is:
result contains: "this is a test".