FreeUtilityHub

Regex Tester + Explainer

Live regex matching, flags, common patterns library, and plain-English token explainer.

100% client-side — your data never leaves this device.

Common patterns

//
Flags

Highlighted matches

2 matches
Contact us at hello@example.com or support@test.org for help.

Match details

  • hello@example.comindex 14
  • support@test.orgindex 35

Pattern explainer

Plain-English breakdown of tokens (approximate — complex regex may need extra care).

  1. \b — Word boundary
  2. \w — Word character (letter, digit, or _)
  3. + — One or more of the previous token
  4. “@” — Literal character
  5. \w — Word character (letter, digit, or _)
  6. + — One or more of the previous token
  7. \. — Escaped literal “.”
  8. \w — Word character (letter, digit, or _)
  9. + — One or more of the previous token
  10. \b — Word boundary

How to use the regex tester

Enter a JavaScript-compatible regular expression, toggle flags (g, i, m, s, u, y), or pick a common pattern (email, URL, phone, IPv4…). Matches highlight instantly with group details and a token-by-token explainer. Everything runs in your browser.

More free tools