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 18,000 community submitted regex patterns...
2
Resolvers
PCRE (PHP <7.3)
APD SFs too general
Submitted by
anonymous
-
4 years ago
1
Find If a user agent is likely to be a phone or tablet
PCRE (PHP <7.3)
This regular expression will find key word in a user agent and to easily flag them has a phone or tablet.
Submitted by
anonymous
-
4 years ago
1
Carfax job name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Non-symmetric positive lookahead (touching relation)
Python
no description available
Submitted by
anonymous
-
4 years ago
1
string end (_B--1234)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Regex de Nome
PCRE (PHP <7.3)
Aceita até 7 palavras, podendo conter acento, e com espaço entre elas
Submitted by
anonymous
-
4 years ago
1
touching bug
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Bug in regexp match count
Python
no description available
Submitted by
anonymous
-
4 years ago
1
CPFs
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Telefones
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Final Regex for the log
Python
A single regex with the AND operator instead of OR
Submitted by
anonymous
-
4 years ago
1
carryover_assimilation_plosives
Python
no description available
Submitted by
anonymous
-
4 years ago
1
dnsmasq query logs
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
wiremock all except regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
No repeating, no 1234567889,
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
1
forAllWorkToIll
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
1
Flexible box
Golang
no description available
Submitted by
anonymous
-
4 years ago
1
Sri Lankan Modern Licence Number Plate Regex
PCRE (PHP <7.3)
// Sri Lankan Modern Licence Number Plate Regex // FORMAT : PP LLL DDDD PP - Province (SP, NW, WP, UP, CP, NC, SG, EP, NP) LLL - 3 Letter...
Submitted by
anonymous
-
4 years ago
1
Sucinnost
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
bot
Python
no description available
Submitted by
anonymous
-
4 years ago
1
...
297
298
299
300
301
...
900
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
(?(DEFINE)
(?'loc_part'
[
\w
!#$%&'*+
\-\/
=?^`{|}~
]
+
)
(?'loc'
\g'loc_part'
(?:
\.
\g'loc_part'
)*
)
(?'subdom'
[
a
-
z
]
(?:
[
a
-
z
\d
-
]
*
[
a
-
z
\d
]
)?
)
(?'tld'
[
a
-
z
]
{2,6}
)
)
(?'local'
\g'loc'
)
@
(?'domain'
(?:
\g'subdom'
\.
)+
\g'tld'
)
/
ixg
Open regex in editor
Description
match some emails and extract their local part and domain
Submitted by
dang duomg 191
-
5 months ago
(Last modified 5 months ago)