Test and validate regular expressions with real-time matching
\d{3}-\d{3}-\d{4}
[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}
^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{8,}$
\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b
^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$
^\d{5}(-\d{4})?$
^#?([a-f0-9]{6}|[a-f0-9]{3})$
^\d{4}-\d{2}-\d{2}$
Note: All regex testing happens on the server. Your patterns and test strings are not stored.
A regex tester allows you to test and debug regular expressions in real-time. It helps developers validate patterns used for searching, matching, and replacing text.
Validate patterns and debug expressions easily with this free tool.