Searches in this string for the first index of the specified character. The search for the character starts at the beginning and moves towards the end of this string. @param c the character to find. @return the index in this string of the specified character, -1 if the character
(int c)
| 953 | * character isn't found. |
| 954 | */ |
| 955 | public int indexOf(int c) { |
| 956 | return indexOf(c, 0); |
| 957 | } |
| 958 | |
| 959 | /** |
| 960 | * Searches in this string for the index of the specified character. The |
no test coverage detected