Like String.indexOf but specifying the furthest allowed position @param src the input string @param delim the delimiter character @param end the end position @return the position where the delimiter is found, or -1
(CharSequence src, char delim, int end)
| 142 | * @return the position where the delimiter is found, or -1 |
| 143 | */ |
| 144 | public static int indexOf(CharSequence src, char delim, int end) { |
| 145 | return indexOf(src, delim, 0, end); |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Like <code>String.indexOf</code> but specifying the furthest allowed position |