Regex Tester

Test regular expressions in real time - highlight matches, inspect groups, and use common presets

🔍 Regular Expression

//g

🔧 Regex Quick Reference

.Any character
\dDigit [0-9]
\wWord char [a-zA-Z0-9_]
\sWhitespace
^Start of string
$End of string
*0 or more
+1 or more
?0 or 1 (optional)
{n,m}Between n and m times
()Capture group
[abc]Character class