🔍 Regex Tester

Test and validate your regular expressions with real-time matching

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