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 18,000 community submitted regex patterns...
31
Email address (most used)
ECMAScript (JavaScript)
Email address, most used cases
Submitted by
Jago
-
9 years ago
19
Email (RFC2822)
Recommended
ECMAScript (JavaScript)
Email address compliant with RFC2822
Submitted by
Jago
-
9 years ago
1
Q_Property
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
-2
Select the numeric part of a price following an ascii dollar sign
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
URL de playlist de salvavinilos.org
Python
URL de playlist de salvavinilos.org
Submitted by
anonymous
-
9 years ago
2
Match at least 2-letters (international)
ECMAScript (JavaScript)
RegExp to match that user has entered at least 2-letters (including international letters) in a field
Submitted by
anonymous
-
9 years ago
1
#define const_value 4
PCRE (PHP <7.3)
#define const_value 4 to const uint8_t const_value 4
Submitted by
Big Chuck Dawg
-
9 years ago
1
const uint8_t T_SYN_3 23
PCRE (PHP <7.3)
const uint8_t T_SYN_3 23 to const uint8_t T_SYN_3 = 23;
Submitted by
Big Chuck Dawg
-
9 years ago
1
FQDN Fully Qualified Domain Name
PCRE (PHP <7.3)
Allow only two or more labels. Fix deprecated FQDN regexp not passing on test "dicas-l.com.br"
Submitted by
Rafael Justo and Mauro Trajber
-
9 years ago
0
Find array ending with comma
PCRE (PHP <7.3)
Useful for finding array error. Example: {'id':'1','name':'test',} Finds the ",}" from the example
Submitted by
anonymous
-
9 years ago
1
Limpar caracteres telefone
Python
Limpa os caracteres especiais e letras de um telefone imputado
Submitted by
anonymous
-
9 years ago
1
Emoji chars
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
match block apache
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Phone number tests
PCRE (PHP <7.3)
Test a given string for phone number variations and extract th parts.
Submitted by
anonymous
-
9 years ago
1
2013b
ECMAScript (JavaScript)
no description available
Submitted by
dror
-
9 years ago
1
Select any decimal
PCRE (PHP <7.3)
With this pattern possible select decimal that cantain comma or space
Submitted by
natan
-
9 years ago
2
Получение числа, которым заканчивается строка
PCRE (PHP <7.3)
no description available
Submitted by
summer_rain
-
9 years ago
1
Regex_Article
PCRE (PHP <7.3)
Start with two letters and followed by any number of Integers
Submitted by
S
-
9 years ago
1
Caculator
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
inline-sub-via-sed
PCRE (PHP <7.3)
regex for inline substitution w/ sed
Submitted by
anonymous
-
9 years ago
1
...
832
833
834
835
836
...
900
Community Library Entry
-2
Regular Expression
PCRE (PHP <7.3)
/
^
(?:
4
[
0
-
9
]
{12}
(?:
[
0
-
9
]
{3}
)?
|
5
[
1
-
5
]
[
0
-
9
]
{14}
|
3
[
47
]
[
0
-
9
]
{13}
|
3
(?:
0
[
0
-
5
]
|
[
68
]
[
0
-
9
]
)
[
0
-
9
]
{11}
|
6
(?:
011
|
5
[
0
-
9
]
{2}
)
[
0
-
9
]
{12}
|
(?:
2131
|
1800
|
35
\d
{3}
)
\d
{11}
)
$
/
Open regex in editor
Description
Visa, MasterCard, American Express, Diners Club, Discover, JCB
Submitted by
www.regular-expressions.info/creditcard.html
-
9 years ago