Regex Tester
Test and debug regular expressions with real-time matching
Matches
Found matches
No matches found
Groups:
Quick Reference
Character Classes
\d
Any digit\w
Word character\s
Whitespace.
Any characterAnchors
^
Start of line$
End of line\b
Word boundaryQuantifiers
*
0 or more+
1 or more?
0 or 1{n}
Exactly nGroups
()
Capture group(?:)
Non-capturing|
Alternation