Top Prev Next Up Down

Grouping and capturing

Support for grouping and capturing is limited to only two cases

the reason for the limitation is in the implementation itself, the capturing is done in a very late state of the process.

Quantifiers

Two types of quantifiers are supported
(Note both {<num>,<num>} and {<num>:<num>} means the same the comma is only changed to a colon)
Examples of usage ExIota .

Alternation

Alternation is supported in capturing and grouping and grouping only parentheses. By writing "^A(B|C)D$"c you get result from "ABD" and "ACD" source strings.

Other issues