match unlimited unordered group #1066
-
If I have the following information:
There is no specific order required. Each one of those information can occur more than once, but only the last value will be recorded. For example, here
But how can I parse unordered info that could occurs more than once unlimited times? For example:
I've created a
Can parse:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 12 replies
-
The whole idea behind unordered groups is that they only parse an element once, never twice. Using unordered groups for this doesn't really make sense. You should just use alternatives instead:
|
Beta Was this translation helpful? Give feedback.
The whole idea behind unordered groups is that they only parse an element once, never twice. Using unordered groups for this doesn't really make sense. You should just use alternatives instead: