Bodoly Logo
MuktiBot Ai — Bodoly ×

Regex Tester

Enter a pattern to begin.
Explanation

Your regex explanation will appear here.

Regex Cheatsheet
.Any character (except newline)
\d, \w, \sDigit, Word, Whitespace
\D, \W, \SNot a digit, word, whitespace
[abc]Any of a, b, or c
[^abc]Not a, b, or c
[a-z]Characters a to z
a|ba or b
^, $Start/end of the string
*, +, ?0+, 1+, or 0-1 occurrences
{n}, {n,}, {n,m}Exactly n, n or more, n to m
(...)Capture Group
\nReference to group 'n'