BBjString::toLowerCase
Description
In BBj 7.0 and higher, this method converts all of the characters in this String to lower case using the rules of the default locale. This is equivalent to calling toLowerCase(Locale.getDefault()).
NOTE: This method is locale sensitive, and may produce unexpected results if used for strings that are intended to be interpreted locale independently. Examples are programming language identifiers, protocol keys, and HTML tags. For instance, "TITLE".toLowerCase() in a Turkish locale returns "t\u0131tle", where '\u0131' is the LATIN SMALL LETTER DOTLESS I character. To obtain correct results for locale insensitive strings, use toLowerCase(Locale.ROOT).
Syntax
Return Value |
Method |
---|---|
String |
toLowerCase() |
String |
toLowerCase(Locale locale) |
Parameters
Variable |
Description |
---|---|
locale |
Use the case transformation rules for this locale. |
Return Value
Returns the String, converted to lowercase.
Remarks
None.
Example
|
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.