Test regular expressions against sample text with highlighted matches and capture groups. Fully client-side — no account, uploads, or remote storage.
Added Apr 29, 2026
Input
Result
Enter a value for regular expression to see your result.
Tests a JavaScript regular expression against a test string and shows all matches, capture groups, and match positions. Uses the JavaScript RegExp engine with standard ECMAScript flags.
The pattern captures username and domain in two groups.
Inputs
Result
Inputs
Result
This tester uses the JavaScript (ECMAScript) regex engine built into your browser. It supports standard features including groups, lookaheads, named captures, and character classes.
The 'g' (global) flag makes the regex find all matches in the string, not just the first one. Without 'g', the engine stops after the first match.