Test and debug your regular expressions with real-time highlighting and detailed match information.
.
Matches any character except line breaks\w
Matches any word character (alphanumeric & underscore)\d
Matches any digit character (0-9)\s
Matches any whitespace character (spaces, tabs, line breaks)\W
Matches any non-word character\D
Matches any non-digit character\S
Matches any non-whitespace character[abc]
Matches any character in the set[^abc]
Matches any character not in the set[a-z]
Matches any character in the range^
Matches the beginning of the string$
Matches the end of the string\b
Matches a word boundary\B
Matches a non-word boundary*
Matches 0 or more times+
Matches 1 or more times?
Matches 0 or 1 time{n}
Matches exactly n times{n,}
Matches at least n times{n,m}
Matches from n to m times(abc)
Capturing group(?:abc)
Non-capturing group(?<n>abc)
Named capturing group (ES2018)a|b
Matches either a or b\\
Escapes a special character\n
Matches a line feed\t
Matches a tab\r
Matches a carriage return\0
Matches a NUL character(?=abc)
Positive lookahead(?!abc)
Negative lookahead(?<=abc)
Positive lookbehind (not fully supported in all browsers)(?<!abc)
Negative lookbehind (not fully supported in all browsers)g
Global search (find all matches)i
Case-insensitive searchm
Multi-line searchs
Dot (.) matches newlines toou
Unicode supporty
Sticky search\d{3}-\d{2}-\d{4}
US Social Security Number^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$
Email address^(https?:\/\/)?[\w-]+(\.[\w-]+)+([\w.,@?^=%&:/~+#-]*[\w@?^=%&/~+#-])?$
URL^\+?[1-9]\d{1,14}$
Phone number (E.164 format)Regular expressions (regex) are powerful patterns used to match character combinations in strings. They are widely used for text validation, search and replace operations, and data extraction.
/^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$/
This pattern checks for a valid email format with a username, @ symbol, domain name, and domain extension.
/(https?:\/\/)[a-zA-Z0-9-\.]+\.[a-zA-Z]{2,}/g
This pattern locates URLs in text, matching the protocol, domain name, and domain extension.
Complex regex patterns can lead to performance issues, especially with large input texts or when using certain features like lookaheads and lookbehinds. Using catastrophic backtracking patterns (like nested quantifiers) can cause extremely slow execution or even browser hangs.