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...
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
All url with latest (optional)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
String remove white spaces and hyphens
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Years between 1900 and 2029
PCRE (PHP <7.3)
RegEx that validates input that are values in years between 1900 and 2029
Submitted by
anonymous
-
7 years ago
0
pacemaker
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
postgresql
PCRE (PHP <7.3)
Postgresql .log - ERROR/DETAIL/STATEMENT
Submitted by
anonymous
-
7 years ago
0
postgresql
PCRE (PHP <7.3)
another postgreslq log
Submitted by
anonymous
-
7 years ago
0
postgresql - transactions
PCRE (PHP <7.3)
Postgresql .log - ERROR/DETAIL/STATEMENT
Submitted by
anonymous
-
7 years ago
0
Homepage - Hasbro.com
PCRE (PHP <7.3)
number range accommodates the locale, otherwise it was taking anything that eventually ended in the "/"
Submitted by
anonymous
-
7 years ago
0
Kenyan phonenumber Regex
Python
Detects Kenyan Phonenumbers
Submitted by
anonymous
-
7 years ago
0
Australian phone number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
rabbitmq
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
haproxy
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
To match hex colours
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Troy Brokenshire
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
پیدا کردن کلمات با آغاز حروف خاص
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
1
...
115
116
117
118
119
...
900
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
(
(?:
[
A
-
Za
-
z0
-
9!#$%&'*+
\-\/
=?^_`{|}~
]
|
(?<=
^
|
\.
)
"
|
"
(?=
$
|
\.
|
@
)
|
(?<=
"
.
*
)
[
.
]
(?=
.
*
"
)
|
(?<!
\.
)
\.
){1,64}
)
(
@
)
(
(?:
[
A
-
Za
-
z0
-
9.
\-
]
)*
(?:
[
A
-
Za
-
z0
-
9
]
)
\.
(?:
[
A
-
Za
-
z0
-
9
]
){2,}
)
$
/
gm
Open regex in editor
Description
Tries to match RFC 5322 as well as possible
Submitted by
anonymous
-
5 years ago