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

Here is the scenario, I have this regex pattern:

\"category\",([0-9]+)\n(\"subcategory\",[0-9]+\n)*

this pattern should match the following data:

"category",1
"subcategory",1
"subcategory",2
"subcategory",3
"category",2
"subcategory",1
"subcategory",2
"subcategory",3

and I'm using the following regex function:

public static List<String> regexFindMultiStrings(String pattern, String input) {
    Pattern p = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE);
    Matcher m = p.matcher(input);
    List<String> data = new ArrayList<String>() ;

    while (m.find()) 
    {

         for (int i = 0; i <= m.groupCount(); i++) 
         {
             data.add(m.group(i));
             //Log.e("Array", m.group(i));
         }
    }
    return data;
}

here is the problem, now when I use this pattern to match all the data it gives only the following:

1
"subcategory",1
2
"subcategory",1

which is something I'm not looking for how to get all of the data something like:

1
"subcategory",1
"subcategory",2
"subcategory",3
2
"subcategory",1
"subcategory",2
"subcategory",3
share|improve this question
same thing the problem is if I use regexpal or any other regex utility I get all string matched but with java I only get the main category and the first subcategory. its a weird behavior :\ – Robin Van Persi Dec 9 '12 at 7:35
See stackoverflow.com/questions/5018487/… – Mat Dec 9 '12 at 7:42

1 Answer

You are missing a pair of parentheses:

\"category\",([0-9]+)\n((\"subcategory\",[0-9]+\n)*)

The problem lies in the fact that you can not expect to obtain the capture of multiple matches of the same group.

Optionally you can make the inner group non-capturing:

\"category\",([0-9]+)\n((?:\"subcategory\",[0-9]+\n)*)
share|improve this answer
@Bart thanks for the edit – CAFxX Dec 9 '12 at 7:56
still I'm getting the same results :\ – Robin Van Persi Dec 9 '12 at 7:58
Your for loop should start with i = 1 not 0. Try with \"category\",(\\d+)\n((\"subcategory\",\\d+\n)*). – Bhesh Gurung Dec 9 '12 at 7:59
@BheshGurung - same thing. I'm getting same results – Robin Van Persi Dec 9 '12 at 8:05

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.