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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 12,100 community submitted regex patterns...
0
SEBI Firewall Parser - 1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Eastlink Retrieve Customer data from SSL API
PCRE (PHP <7.3)
Eastlink Retrieve Customer
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Practice1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Practice2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Practice8
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Practice 9
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
「n」分位
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Practice 10
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Practice 11
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Practice 12
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Practice 13
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Practice 14
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
SIEM Use Case No 11 - System configuration changes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Example1(phone number)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Example2(CSV Data)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Example4(HTML Tables Part1)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Example4(HTML Tables Part1)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Eastlink - get customer location equipment with returncode
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Actor command
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Look command
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
479
480
481
482
483
...
605
Disorted Email Addresses
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