TextTools.site

Regex Tester

Test and debug regular expressions in real-time. See matches highlighted instantly.

//

Regex Quick Reference

.Any character
\dDigit (0-9)
\wWord char
\sWhitespace
^Start of string
$End of string
*0 or more
+1 or more
?0 or 1
{n}Exactly n
[abc]Any of a,b,c
(x)Capture group