- Which regex flavor does this cover?
- PCRE/JavaScript/Python compatibility — the common subset that works in 90% of languages. Engine-specific features (Perl's lookbehind variants, .NET balancing groups) are noted separately.
- Does it include named groups?
- Yes — `(?<name>pattern)` with the syntax variations across languages (JS uses `(?<name>`, Python uses `(?P<name>`). Copy the right one for your context.
- What about character classes?
- Full coverage: `\w`, `\d`, `\s`, `\b`, POSIX classes `[[:alpha:]]`, and Unicode property escapes `\p{L}`.
- Is there a performance guide?
- Yes — notes on catastrophic backtracking patterns (nested quantifiers, overlapping alternations) and how to rewrite them. Essential for regex that processes user input.