“Index de retour à l'aide de Matcher Java” Réponses codées

Index de retour à l'aide de Matcher Java

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());
    }
}
Yeet 69

Index de retour à l'aide de Matcher Java

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());
    }
}
Yeet 69

Réponses similaires à “Index de retour à l'aide de Matcher Java”

Questions similaires à “Index de retour à l'aide de Matcher Java”

Plus de réponses similaires à “Index de retour à l'aide de Matcher Java” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code