On nous donne une chaîne, disons, "itiswhatitis"
Et une sous-chaîne, disons, "is"
. J'ai besoin de trouver l'index de 'i'
Lorsque la chaîne "is"
Apparaît une seconde fois dans la chaîne d'origine.
String.indexOf("is")
retournera 2 dans ce cas. Je veux que la sortie soit 10 dans ce cas.
Utilisez une version surchargée de indexOf()
, qui prend l'index de départ (fromIndex) comme 2ème paramètre:
str.indexOf("is", str.indexOf("is") + 1);
int first = string.indexOf("is");
int second = string.indexOf("is", first + 1);
Cette surcharge commence à rechercher la sous-chaîne à partir de l'index donné.
J'utilise: Apache Commons Lang: StringUtils.ordinalIndexOf ()
StringUtils.ordinalIndexOf("Java Language", "a", 2)
je pense qu'une boucle peut être utilisée.
1 - check if the last index of substring is not the end of the main string.
2 - take a new substring from the last index of the substring to the last index of the main string and check if it contains the search string
3 - repeat the steps in a loop
Vous pouvez écrire une fonction pour renvoyer un tableau de positions d’occurrence, Java a la fonction String.regionMatches qui est assez pratique
public static ArrayList<Integer> occurrencesPos(String str, String substr) {
final boolean ignoreCase = true;
int substrLength = substr.length();
int strLength = str.length();
ArrayList<Integer> occurrenceArr = new ArrayList<Integer>();
for(int i = 0; i < strLength - substrLength + 1; i++) {
if(str.regionMatches(ignoreCase, i, substr, 0, substrLength)) {
occurrenceArr.add(i);
}
}
return occurrenceArr;
}