| Value | Meaning |
|---|---|
| NONE0 | No special rules, matches until the next element can match |
| ALTERNATE1 | | If fails, the next element will attempt to match instead |
| EXCLUSIONARY2 | [^...] Matches only if no characters in the set match |
| QUANTIFIED4 | {...} Has min/max |
| NONCAPTURE8 | (?:...) Acts as a group but does not capture match |
| NEGATIVE16 | (...!...) Matches if not matched |
| LAZY32 | ...? Matches as few times as possible |
| GREEDY64 | ...+ Matches as many times as possible |