This question relates to character class subtraction in regular expression (regex). I refer to the regex flavour of XPATH 2.0 second edition.
When there are negative groups within a character class subtraction, does the subtract operator (-) occur before? or after the negative group operator (^)?
The text of the XPATH/ XML schema specification is below. But to my mind, it reads ambiguously.
For any ·positive character group· or ·negative character group· G, and any ·character class expression· C, G-C is a valid ·character class subtraction·, identifying the set of all characters in C(G) that are not also in C(C).
To be more specific, consider the following three regexes:
- [^abc-[ad]]
- [^abc-[^ad]]
- [abc-[^ad]]
being matched against the haystack text of:
- abcdef
What are the possible match texts (first and subsequent)?