Pourquoi l'algorithme suivant ne s'arrête-t-il pas pour moi ? (str est la chaîne dans laquelle je cherche, findStr est la chaîne que j'essaie de trouver)
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);