Get the earlier index that to be searched for the first occurrance in one of any of the given string. @param s the string to be indexed @param delims the delimiters used to index @return the earlier index if there are delimiters
(String s, String delims)
| 2108 | * @return the earlier index if there are delimiters |
| 2109 | */ |
| 2110 | protected int indexFirstOf(String s, String delims) { |
| 2111 | return indexFirstOf(s, delims, -1); |
| 2112 | } |
| 2113 | |
| 2114 | |
| 2115 | /** |
no test coverage detected