web-dev-qa-db-fra.com

Obtenir l'index d'un motif dans une chaîne en utilisant regex

Je veux rechercher une chaîne pour un modèle spécifique.

Les classes d'expressions régulières fournissent-elles les positions (index dans la chaîne) du modèle dans la chaîne?
Il peut y avoir plus que 1 occurrences du motif.
Un exemple pratique?

78
Cratylus

Utilisez Matcher :

public static void printMatches(String text, String regex) {
    Pattern pattern = Pattern.compile(regex);
    Matcher matcher = pattern.matcher(text);
    // Check all occurrences
    while (matcher.find()) {
        System.out.print("Start index: " + matcher.start());
        System.out.print(" End index: " + matcher.end());
        System.out.println(" Found: " + matcher.group());
    }
}
145
Jean Logeart

édition spéciale réponse de Jean Logeart

public static int[] regExIndex(String pattern, String text, Integer fromIndex){
    Matcher matcher = Pattern.compile(pattern).matcher(text);
    if ( ( fromIndex != null && matcher.find(fromIndex) ) || matcher.find()) {
        return new int[]{matcher.start(), matcher.end()};
    }
    return new int[]{-1, -1};
}
3
Ar maj