- ignoreCase
- specifies if case should be ignored (use Java.Text.Collator instead for non-ASCII case insensitivity).
- thisStart
- the start offset in this string.
- string
- the other string.
- start
- the start offset in string.
- length
- the number of chars to compare.
Documentation for this section has not yet been entered.
Type Reason Java.Lang.NullPointerException if string is null.
Returns true if the given subsequence of the given string matches this string starting at the given offset.
If ignoreCase is true, case is ignored during the comparison. 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.