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,400 community submitted regex patterns...
0
later
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Liste AUtocad Supprimer inutile
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Scintilla - Verkettung von Symbolen, namespaces, Types, Properties, Methoden
PCRE (PHP <7.3)
Scintilla nimmt Klammern () als nicht ein Teil eines Wortes
Submitted by
anonymous
-
4 years ago
0
Empty DIV Container
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
ANSIBLE VAULT PASSWORD
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
upload
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
M3U8 parsing
PCRE (PHP <7.3)
Extracts duration, title and uri from an M3U8 file, using correspoding named groups.
Submitted by
anonymous
-
4 years ago
0
Delete WI
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Assignment 1, part 2.2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
mask pin in JSON/XML
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
act_mall导入
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
VP spoofed
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Platform.sh Web Location RegEx Example #1
PCRE (PHP <7.3)
See Unit Tests
Submitted by
anonymous
-
4 years ago
0
Code Conventionen ro
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Postal Code FR
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Phone regex for => (789) 456-1230
PCRE (PHP <7.3)
(789) 456-1230
Submitted by
anonymous
-
4 years ago
0
US state
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
acao
PCRE (PHP <7.3)
texto de visao
Submitted by
anonymous
-
4 years ago
0
Todo lo que no sea numero
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
QLAB cue
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
479
480
481
482
483
...
620
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