Test regular expressions with live highlighting and capture groups.
Write a regular expression and see matches highlighted live in your sample text, with capture groups broken out individually. Toggle g/i/m/s flags, start from common presets like email or URL patterns, and matching is run with a timeout guard so a catastrophic-backtracking pattern can't hang your browser.
Regular expressions are matched on a background thread here, not the main one. That distinction matters because a regex engine can't be politely interrupted mid-search from the same thread it's running on — the only reliable way to stop a pathological pattern (the classic (a+)+$ style catastrophic backtracking case) is to run it somewhere you're allowed to forcibly terminate. If a match doesn't finish within about 1.5 seconds, the worker running it is killed outright and a fresh one takes its place for your next test.
Capture groups are broken out into their own column instead of being buried inside the raw match string, and named groups (?<year>\d{4}) show up labeled by name. The five presets (email, URL, phone, IPv4, hex color) are intentionally simple, readable patterns rather than the maximally 'correct' RFC-compliant versions, which tend to be unreadable and rarely what people actually want when testing input in practice.