java indexof all occurrences

50

java indexof all occurrences -

int index = word.indexOf(guess);
while (index >= 0) {
    System.out.println(index);
    index = word.indexOf(guess, index + 1);
}

Comments

Submit
0 Comments