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 12,160 community submitted regex patterns...
0
Post Deploy
PCRE (PHP <7.3)
Only matches on post deploy tasks/checkboxes Will not match a pattern with a colon (:) in it
Submitted by
anonymous
-
4 years ago
0
extract bills code
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
UPN
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Workflow Note
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
VAL
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
SCID
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
MARKED - 03-03-2020 - GTCR Fund XI-A LP - PAPEF VII - DIST.pdf - 28
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Test2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
sln File
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
PRGX accountID from Jira
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Eastlink IPPay Sale Response
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
X12 ou X13 file
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Extract Domain from GA view
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Catch Hostname
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Extract View Type
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Only IQOS.com
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Microsites
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
rodne cislo
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
SQLA example
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
XML Parser
PCRE (PHP <7.3)
This is just for fun, clearly a terrible idea.
Submitted by
anonymous
-
4 years ago
1
...
479
480
481
482
483
...
608
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