Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java, how to get all groups which is inside a group (regular expression).
For example:Using (([A-Z][a-z]+)+)([0-9]+) test a string : "AbcDefGhi12345".
Then get Result:
matches():yes
groupCount():3
group(1):AbcDefGhi
group(2):Ghi
group(3):12345

But I want to get String "Abc", "Def", "Ghi", "12345" respectively.
How can I do that by using regular expression?

share|improve this question

3 Answers

up vote 1 down vote accepted

Regular expressions cannot handle repeating groups it can return any of the captured groups (in your case it returned "Ghi").

The example below will print:

Abc
Def
Ghi
12345

The code:

public static void main(String[] args) {

    String example = "AbcDefGhi12345";

    if (example.matches("(([A-Z][a-z]+)+)([0-9]+)")) {

        Scanner s = new Scanner(example);

        String m;
        while ((m = s.findWithinHorizon("[A-Z][a-z]+", 0)) != null)
            System.out.println(m);

        System.out.println(s.findWithinHorizon("[0-9]+", 0));
    }
}
share|improve this answer
Does the camelCaseStyle define each group? – pringlesinn Dec 27 '10 at 9:53
@pringlesinn: Yes (the word-groups). – dacwe Dec 27 '10 at 11:38
@dacwe: so maybe what I asked a while ago might help stackoverflow.com/questions/4502273/… – pringlesinn Dec 27 '10 at 12:14
-1 if you copy my (and hzh's) answer you should mention it and not add a comment that it would not work. – morja Dec 27 '10 at 14:19
@morja: Yeah, reverted.. – dacwe Dec 27 '10 at 14:26
show 4 more comments
Pattern p = Pattern.compile("([A-Z][a-z]+|(?:[0-9]+))");
Matcher m = p.matcher("AbcDefGhi12345");
while(m.find()){
   System.out.println(m.group(1));
}
share|improve this answer
Also matches only "12345" – dacwe Dec 27 '10 at 11:28
If matching strings that does not start with [A-Z][a-z]+ is okey it is the best solution! – dacwe Dec 27 '10 at 14:46

like hzh's answer with some format and a little bit simpler:

Pattern p = Pattern.compile("[A-Z][a-z]+|[0-9]+"); 
Matcher m = p.matcher("AbcDefGhi12345"); 
while(m.find()){ 
    System.out.println(m.group(0)); 
}

gives you

Abc
Def
Ghi
12345
share|improve this answer
Also matches only "12345" – dacwe Dec 27 '10 at 11:28
Not true, when I run it I get the following: 1. Abc 2. Def 3. Ghi 4. 12345 – morja Dec 27 '10 at 12:16
Yes, it still matches the string "12345" alone which is not ok. – dacwe Dec 27 '10 at 14:26
Why is it not ok???? The OP never required it to match only strings that are in some kind of format. And giving me a -1 for that... hmmm. – morja Dec 27 '10 at 14:35
If so, putting a if(string.matches("([A-Z][a-z]+)+[0-9]+")) {} around will help of course. – morja Dec 27 '10 at 15:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.