¿Por qué el siguiente algoritmo no se detiene para mí? (str es la cadena que estoy buscando, findStr es la cadena que estoy tratando de encontrar)
String str = "helloslkhellodjladfjhello";
String findStr = "hello";
int lastIndex = 0;
int count = 0;
while (lastIndex != -1) {
lastIndex = str.indexOf(findStr,lastIndex);
if( lastIndex != -1)
count++;
lastIndex += findStr.length();
}
System.out.println(count);