QuickFreeTools

Online Extract Regex Matches from Text

Find and list all matches of a regular expression in your text. Enter a regex pattern and get each match (or capture groups) listed. Client-side only.

Frequently Asked Questions

What regex flavor is supported?
JavaScript regex (ECMAScript). Use standard syntax: character classes [a-z], quantifiers +, *, ?, groups (), and flags like g (global) and i (case-insensitive).
Can I get capture groups?
Yes. Use parentheses in your pattern (e.g. (\d+)) and the tool can show each group; the first match is often the full match, then group 1, 2, etc.
Invalid regex?
If the pattern is invalid, an error message is shown and no matches are returned. Check for unescaped special characters.

Related Text Tools