Regex Visualizer

Type a regex, test against text, get plain English explanations

/ /
0 matches

Explanation

Enter a regex to see explanation…

Cheatsheet

.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
{n,m}Between n and m
[abc]Character set
(group)Capture group
a|bAlternation
\bWord boundary
(?=...)Lookahead
(?!...)Neg lookahead