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)
| 697 | |
| 698 | |
| 699 | public int indexIn(CharSequence sequence) { |
| 700 | return indexIn(sequence, 0); |
| 701 | } |
| 702 | |
| 703 | /** |
| 704 | * Returns the index of the first matching character in a character sequence, starting from a |
no test coverage detected