⚡ OfficeHub

🔍 Regex Tester

Test and debug regular expressions in real-time

Test String

Matches Found: 0

📖 Regex Cheat Sheet

. Any character
\d Digit (0-9)
\w Word char
\s Whitespace
^ Start of string
$ End of string
* 0 or more
+ 1 or more
? Optional
{n} Exactly n
{n,m} n to m times
[abc] Character class
[^abc] Not a, b, or c
(xyz) Capture group
a|b a or b
\b Word boundary