Here is simple pattern: [key]: [value1] [value2] [value3] [valueN]
I want to get:
- key
- array of values
Here is my regex: ^([^:]+):(:? ([^ ]+))++$
Here is my text: foo: a b c d
Matcher gives me 2 groups: foo (as key) and d (as values).
If I use +? instead of ++ I get a, not d.
So java returns me first (or last) occurrence of group.
I can't use find() here becase there is only one match.
What can I do except splitting regex into 2 parts and using find for the array of values? I have worked with regular expressions in many other environments and almost all of them have ability to fetch "first occurrence of group 1", "second occurrence of group 1" and so on.
How can I do with with java.util.regex in JDK6 ?
Thanks.