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