⚡ REGEX TESTER
Test regular expressions in real-time. Zero dependencies.
Pattern
g
global
i
case-insensitive
m
multiline
s
dotAll
u
unicode
Test String
Contact us at hello@bbobop.com or support@zewp.com for help. You can also reach jason@example.org anytime.
Email
URL
IP Address
Phone
Date
Hex Color
Highlighted Result
Matches
Replace
Quick Reference
.
Any character
\d \D
Digit / Not digit
\w \W
Word / Not word
\s \S
Space / Not space
^ $
Start / End
\b
Word boundary
* + ?
0+, 1+, 0 or 1
{n,m}
Between n and m
[abc]
Character class
[^abc]
Not in class
(abc)
Capture group
(?:abc)
Non-capture group
a|b
Alternation
(?=a)
Lookahead
(?!a)
Neg lookahead
(?<=a)
Lookbehind