Regex Tester

Regular Expression

//

Test String

Enter text to test against the pattern

Quick Reference

. Any character
\d Digit [0-9]
\w Word char
\s Whitespace
^ Start
$ End
* 0 or more
+ 1 or more
? 0 or 1
{n} Exactly n
[abc] Character set
(abc) Group