🔣 Free Tool

Regex Tester

Test JavaScript regular expressions with live match highlighting, capture groups, flags and a library of common patterns — all in real time.

/ /gi
Common Patterns — click to load
Quick Reference

Regex Cheat Sheet

🔤
Character Classes
\d digit · \w word char · \s whitespace · [a-z] range · [^abc] not · . any char
🔢
Quantifiers
* 0+ · + 1+ · ? 0 or 1 · {3} exactly 3 · {2,5} 2 to 5 · *? lazy
Anchors & Groups
^ start · $ end · \b word boundary · (abc) group · (?:abc) non-capture · a|b or