- string
- the string to compare.
Documentation for this section has not yet been entered.
Type Reason Java.Lang.NullPointerException if string is null.
Compares this string to the given string, ignoring case differences.
The strings are compared one char at a time. This is not suitable for case-insensitive string comparison for all locales. Use a Java.Text.Collator instead.
If there is an index at which the two strings differ, the result is the difference between the two chars at the lowest such index. If not, but the lengths of the strings differ, the result is the difference between the two strings' lengths. If the strings are the same length and every char is the same, the result is 0.