Searches in this string for the last index of the specified character. The search for the character starts at the end and moves towards the beginning of this string. @param c the character to find. @return the index in this string of the specified character, -1 if the character i
(int c)
| 1077 | * character isn't found. |
| 1078 | */ |
| 1079 | public int lastIndexOf(int c) { |
| 1080 | return lastIndexOf(c, count - 1); |
| 1081 | } |
| 1082 | |
| 1083 | /** |
| 1084 | * Searches in this string for the index of the specified character. The |
no test coverage detected