- Which flavor does the tester use?
- JavaScript's RegExp engine — the same your browser runs. For server-side flavors (PCRE, Python, Go), the results are usually identical for common patterns.
- Does it show matched groups?
- Yes — every capture group (numbered and named) is extracted for each match. Overlapping matches aren't produced — use a global regex with `g` flag for all matches.
- Is there a performance warning?
- Yes — the tester detects patterns prone to catastrophic backtracking (nested quantifiers) and warns before running. Prevents freezing the browser on adversarial input.
- Can I use flags?
- All JS flags: g, i, m, s, u, y. Hover each flag to see its effect. The tester re-runs as you toggle.