Pattern und Matcher Problem

kurwajebana

Grünschnabel
Hallo! Folgendes Problem: Ich möchte mit dem folgenden code:

Code:
 public static void main(String[] args) {
        String regex="";
        String s="aaa12bbb13ccc14";
        Pattern p= Pattern.compile(regex);
        Matcher m= p.matcher(s);
        while (m.find())
        for (int i=0; i<= m.groupCount(); i++) {
            System.out.println(i+". Match: "+ m.group(i));
            
        }

Diese Ausgabe erzeugen:

Code:
0. Match: aaa
0. Match: 12
0. Match: bbb
0. Match: 13
0. Match: ccc
0. Match: 14

Weis einer vll. eine Antwort?
 
Zurück