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 14,540 community submitted regex patterns...
0
multi-select with lookahead
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Fixed format for Customer Reference
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
check code
Python
no description available
Submitted by
anonymous
-
5 years ago
0
select file in http address
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
attendance compromise
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Immatriculation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
FrameHeight
Python
Grab Frame Height
Submitted by
anonymous
-
5 years ago
0
Numero gsm
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Operation arithmetique
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Missing Oxford Commas
PCRE (PHP <7.3)
Searches prose for lists lacking the serial/Oxford comma.
Submitted by
anonymous
-
5 years ago
0
Basic
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
hrll
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
numbers parser
PCRE (PHP <7.3)
Parsing numbers
Submitted by
vladimka
-
5 years ago
0
Relation Model use Class Name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
BookMe ohne Kantinennische
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
BookMe mit Kantinennischen
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
oniguruma source group capture
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Test - Basic Syntax
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
TEST IP
PCRE (PHP <7.3)
Проверка правильности ввода IP адреса
Submitted by
anonymous
-
5 years ago
1
...
479
480
481
482
483
...
727
Community Library Entry
52
Regular Expression
PCRE (PHP <7.3)
/
^
(?'Username'
[
-
\w\d
\.
]
+
?
)
(?:
\s
+
at
\s
+
|
\s
*
@
\s
*
|
\s
*
(?:
[
\[\]
@
]
){3}
\s
*
)
(?'Domain'
[
-
\w\d
\.
]
*
?
)
\s
*
(?:
dot
|
\.
|
(?:
[
\[\]
dot
\.
]
){3,5}
)
\s
*
(?'TLD'
\w
+
)
$
/
gm
Open regex in editor
Description
Matches distorted email addresses and converts them back to real ones.
Submitted by
dislick
-
12 years ago