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
Http_accept Header
PCRE (PHP <7.3)
no description available
Submitted by
Robin Dumont-Chaponet
-
8 years ago
1
Test
PCRE (PHP <7.3)
Test
Submitted by
anonymous
-
8 years ago
1
Match regex
PCRE (PHP <7.3)
Get from regex subpattern and its regex
Submitted by
anonymous
-
8 years ago
1
Find arguments
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Level Builder
PCRE (PHP <7.3)
Level Builder - parser
Submitted by
Alex Hedley
-
8 years ago
1
(^(\d)?(\d\d-)(.*)$)
PCRE (PHP <7.3)
50-12585
Submitted by
anonymous
-
8 years ago
2
Diiff
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
nlm
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Json value
PCRE (PHP <7.3)
no description available
Submitted by
kreisfahrer
-
8 years ago
1
linter-elixirc
PCRE (PHP <7.3)
Testing of elixirc output for linter-elixirc validation.
Submitted by
Landon Abney
-
8 years ago
1
Find word in sentense
PCRE (PHP <7.3)
Find the word in sentense
Submitted by
mvaluyko
-
8 years ago
1
only numbers without dot
PCRE (PHP <7.3)
This regex will detect even a dot after the number
Submitted by
noby nirmal
-
8 years ago
1
Only numbers
PCRE (PHP <7.3)
if you input a number there is a match and if it is float there is no match
Submitted by
noby nirmal
-
8 years ago
1
Comic Match
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Website Truth Checker
PCRE (PHP <7.3)
Determine the truth of a given statement about internet services
Submitted by
Glen H.
-
8 years ago
3
Time duration format
PCRE (PHP <7.3)
Match time duration in the following formats only: 1h 30m 59m 1h 33m 11h 2m
Submitted by
Pooja Khorjuvekar
-
8 years ago
1
ABA Numbers Extraction
PCRE (PHP <7.3)
no description available
Submitted by
CI
-
8 years ago
1
find includes without quotes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
find space pipe
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
3
Script Tags
PCRE (PHP <7.3)
This is used when removing Script Tags and their content.
Submitted by
Chris Sumners
-
8 years ago
1
...
475
476
477
478
479
...
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