About
Experience
Projects
Education
Blog
Lab
Chat
Resume
String Processing
Regex
Visualizer
Real-time Regular Expression testing and highlighting.
Expression
/
/ g
g
i
m
s
g (global) i (case-insensitive)
Test String
Hello World! This is a Regex Visualizer built with React.
Matches
Hello
World
!
This
is a
Regex
Visualizer
built with
React
.
Quick Reference
Character Classes
.
Any character
\w
Word character
\d
Digit
\s
Whitespace
[abc]
Any of a, b, or c
Quantifiers
*
0 or more
+
1 or more
?
0 or 1
{3}
Exactly 3
Anchors
^
Start of string
$
End of string
\b
Word boundary
Try Email Regex