QuickFreeTools

Online Regexp Test Text

Test a regular expression against text. See if it matches, and view capture groups. JavaScript regex flavor, client-side.

Match: Yes

Matches

  • 123
  • 456

Frequently Asked Questions

What regex flavor?
JavaScript (ECMAScript) regular expressions. Use standard syntax: character classes [], quantifiers + * ?, groups (), alternation |.
What are capture groups?
Parenthesized parts of the pattern (e.g. (\d+)) capture matched substrings. The tool shows each group for the first match or all matches.
Client-side?
Yes. Matching runs in your browser; nothing is sent to a server.

Related Text Tools