Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Donate
Info
Regex Editor
Community Patterns
Account
Regex Quiz
Settings
Order By
Most Recent
Most upvotes
Most downvotes
Highest Score
Lowest Score
Filter by Flavor
PCRE2 (PHP >=7.3)
PCRE (PHP <7.3)
ECMAScript (JavaScript)
Python
Golang
Java 8
.NET 7.0 (C#)
Rust
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 3,980 community submitted regex patterns...
0
markdown multiline code
ECMAScript (JavaScript)
no description available
Submitted by
EzioShiki
-
7 years ago
0
ăăȘăă©
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Validate and hour date DD/MM/YYYY HH:mm (Leap Year)
ECMAScript (JavaScript)
Validate date in format DD/MM/YYYY HH:mm generaly used in Brazil. With hour in 24 hours format and validating leap year too, optional time.
Submitted by
Eleison Christiano
-
7 years ago
0
NFS share
ECMAScript (JavaScript)
matches a NFS share valid URL.
Submitted by
anonymous
-
7 years ago
0
regex for android consumer site
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Get/Set Property Signature
ECMAScript (JavaScript)
Matches full get/set property signature of C#
Submitted by
anonymous
-
7 years ago
0
SRC FROM HTML FOR IMAGES
ECMAScript (JavaScript)
Captura la URL de la etiqueta SRC, filtrada por un grupo de captura de extensiones de archivo de imagenes
Submitted by
anonymous
-
7 years ago
0
Breakup docker image string to registry/repo image and tag
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Replace all the characters but digits and minus sign
ECMAScript (JavaScript)
Replace all the characters but digits and minus sign.
Submitted by
Srichandradeep C
-
7 years ago
0
regex 5000000 - 8999999
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
symbols and numbers
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Email Client Quirks: Add spaces before !important where needed
ECMAScript (JavaScript)
no description available
Submitted by
Mike Kormendy
-
7 years ago
0
ComplexURLMatching filename and extension
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
ComplexURLMatching filename and extension
ECMAScript (JavaScript)
no description available
Submitted by
lg
-
7 years ago
0
vmnames
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Regex Caracteres Especiais
ECMAScript (JavaScript)
Regex para remover os caracteres especiais, deixando os numeros, caracteres de A-Z (maiusculo e minusculo) e os caracteres padroes do teclado, e espacos.
Submitted by
anonymous
-
7 years ago
0
duplicate words
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Comprehensive US SSN (Social Security Number)
ECMAScript (JavaScript)
This regex targets a customer specific requirement for a regex that matches US Social security numbers either separated by -(dash), space or nothing. So it should match: 702-02-9921 702 02 9921 702029921...
Submitted by
@rafalages
-
7 years ago
0
bank account number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Validate html end tags with single quotes
ECMAScript (JavaScript)
validate html tags should have end tags, closing single, double quotes
Submitted by
Remo
-
7 years ago
1
...
25
26
27
28
29
...
199
Community Library Entry
3
Regular Expression
Golang
`
(?i)
^
(?:
(
[
a
-
z0
-
9-
]
+
|
\*
)
\.
)?
(
[
a
-
z0
-
9-
]
{1,61}
)
\.
(
[
a
-
z0
-
9
]
{2,7}
)
$
`
gm
Open regex in editor
Description
Validates subdomain, root domain, and wild card domains
Submitted by
AnonymousDapper
-
8 years ago