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,000 community submitted regex patterns...
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
0
Joanne names
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Check roundup value for invoice
PCRE (PHP <7.3)
By using this regex, we can check roundup values which is used in billing. Valid results are: 1) -0.15 2) 1.11 3) 9.99 ...
Submitted by
anonymous
-
4 years ago
0
Text between %% %%
PCRE (PHP <7.3)
Text between percentage
Submitted by
anonymous
-
4 years ago
0
look for markdown styles in headers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Recconhecer Comentarios de Xadrez
PCRE (PHP <7.3)
Expressao que reconhece Comentarios de xadrez em um arquivo pgn.
Submitted by
anonymous
-
4 years ago
0
Русские маты
PCRE2 (PHP >=7.3)
Матчит русские маты
Submitted by
piterden
-
2 years ago
(Last modified 2 years ago)
0
Русские маты
PCRE (PHP <7.3)
Матчит русские маты
Submitted by
anonymous
-
4 years ago
(Last modified 3 years ago)
0
Find PHP mysqli query with direct string interpolation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
474
475
476
477
478
...
600
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