🔍 Regex Tester

Test and debug regular expressions with real-time matching

🎯 Regex Pattern

📝 Test String

📊 Results

0
Matches
0
Groups

⚡ Quick Patterns

Email Address
[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}
Matches email addresses
IP Address
\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b
Matches IPv4 addresses
URL
https?://...
Matches HTTP/HTTPS URLs
Date (YYYY-MM-DD)
\b\d{4}-\d{2}-\d{2}\b
Matches ISO date format
Phone Number
\b\d{3}-\d{3}-\d{4}\b
Matches XXX-XXX-XXXX format
Hex Color
#[a-fA-F0-9]{6}\b
Matches hex color codes