Find the index of a string. @param s the string @param starting the starting position @return the index
(String s, int starting)
| 548 | * @return the index |
| 549 | */ |
| 550 | public int indexOf(String s, int starting) { |
| 551 | toString(); |
| 552 | return strValue.indexOf(s, starting); |
| 553 | } |
| 554 | |
| 555 | // Inefficient initial implementation. Will be replaced on the next |
| 556 | // round of tune-up |
no test coverage detected