Validate and debug regular expressions instantly: run a test match, inspect capture groups, or extract every match from your text — all locally in your browser.
Yes. Patterns are compiled as native JavaScript RegExp objects, so lookaheads, named groups, and all ECMAScript features work as expected.
Set the g flag for global matching and use Extract All to list every match with its capture groups.
No. Matching executes fully in your browser — the text and pattern never leave your device.