🔍 Regex Tester
Test and validate your regular expressions with real-time matching
Regular Expression Pattern
g
i
m
s
u
y
Test String
Clear All
Paste
Test Regex
Matches Found
Regex Cheat Sheet
.
- Any character
\w
- Word character
\d
- Digit
\s
- Whitespace
[abc]
- Character class
^
- Start of line
$
- End of line
*
- 0 or more
+
- 1 or more
?
- 0 or 1
{n}
- Exactly n
()
- Group