Returns the index of the first matching character in a character sequence, or -1 if no matching character is present. The default implementation iterates over the sequence in forward order calling #matches for each character. @param sequence the character sequence to examine fro
(CharSequence sequence)
| 623 | * @return an index, or {@code -1} if no character matches |
| 624 | */ |
| 625 | public int indexIn(CharSequence sequence) { |
| 626 | return indexIn(sequence, 0); |
| 627 | } |
| 628 | |
| 629 | /** |
| 630 | * Returns the index of the first matching character in a character sequence, starting from a |
no test coverage detected