/.*/ Regex Tester
← Zewp.com
Pattern
/
/
g
i
m
s
Test String
Contact us at hello@zewp.com or support@zewp.com Visit https://zewp.com for more info Send mail to admin@example.org
Matches:
0
Groups:
0
Time:
0ms
Result (highlighted)
Replace with
Quick Patterns
Match Details
Cheat Sheet
Characters
.
Any char
\d \D
Digit / Not
\w \W
Word / Not
\s \S
Space / Not
\b
Word boundary
Quantifiers
*
0 or more
+
1 or more
?
0 or 1
{n,m}
n to m times
*? +?
Lazy versions
Groups & Refs
(abc)
Capture group
(?:abc)
Non-capture
(?=abc)
Lookahead
(?!abc)
Neg lookahead
(?<=abc)
Lookbehind
\1
Backreference
Anchors
^
Start of line
$
End of line
|
Alternation
[abc]
Char class
[^abc]
Negated class