Share this page

🔍 Regex Tester

Test regular expressions in real-time with match highlighting.

//

Matches

Quick Reference

PatternDescription
.Any character except newline
\d \w \sDigit, word char, whitespace
[abc]Character set
^ $Start / end of string
* + ?0+, 1+, 0 or 1
{n,m}Between n and m occurrences
(abc)Capture group
(?:abc)Non-capturing group