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 15,540 community submitted regex patterns...
0
Email Validation
PCRE (PHP <7.3)
E-Mail Validation in forms PHP regex
Submitted by
anonymous
-
6 years ago
0
Phone Number Validation
PCRE (PHP <7.3)
Phone Number Validation
Submitted by
anonymous
-
6 years ago
0
Facebook profile ID
PCRE (PHP <7.3)
Isolate Profile ID from Facebook URL Still requires: Cutting of remainder of URL from first occurrence of '&'
Submitted by
anonymous
-
6 years ago
0
iTunes Categories
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Email Regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
email
ECMAScript (JavaScript)
save at 2018.11.25
Submitted by
anonymous
-
6 years ago
0
TOEIC - remove number, <media>
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Sprawdzanie kodów pod zamówienia 12 i 13 znaków
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
BSN
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
domain match
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Ruckus REGEX
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Appolo
PCRE (PHP <7.3)
fwefwe
Submitted by
anonymous
-
6 years ago
0
Redirections 301
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Appolo
PCRE (PHP <7.3)
Appollo
Submitted by
anonymous
-
6 years ago
0
Sabre
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
0201009233
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Rosti upgrade with +
PCRE (PHP <7.3)
Fix of lot being smaller when 6 chars
Submitted by
anonymous
-
6 years ago
0
Idea: Substitute contents before match and after match
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Search Url Regex
PCRE (PHP <7.3)
Simple Regex recognising a search url
Submitted by
anonymous
-
6 years ago
0
SEO mobile orchestra
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
464
465
466
467
468
...
777
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
(?(DEFINE)
(?'loc_part'
[
\w
!#$%&'*+
\-\/
=?^`{|}~
]
+
)
(?'loc'
\g'loc_part'
(?:
\.
\g'loc_part'
)*
)
(?'subdom'
[
a
-
z
]
(?:
[
a
-
z
\d
-
]
*
[
a
-
z
\d
]
)?
)
(?'tld'
[
a
-
z
]
{2,6}
)
)
(?'local'
\g'loc'
)
@
(?'domain'
(?:
\g'subdom'
\.
)+
\g'tld'
)
/
ixg
Open regex in editor
Description
match some emails and extract their local part and domain
Submitted by
dang duomg 191
-
4 months ago
(Last modified 4 months ago)