Java Utililty Methods Char Array Index Of

List of utility methods to do Char Array Index Of

Description

The list of methods to do Char Array Index Of are organized into topic(s).

Method

intcharArrayIndexOf(char[] src, char des, int start)
char Array Index Of
for (int i = start; i < src.length; i++) {
    if (src[i] == des)
        return i;
return -1;