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...
0
Übung 4 Aufgabe 6a
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Übung 4 Aufgabe 6b
Python
no description available
Submitted by
anonymous
-
4 years ago
0
matrículas
PCRE (PHP <7.3)
Expressões regulares para extrair matrículas presentes em documentos do Diário Oficial da União DODF. Contexto: projeto KnEDLe
Submitted by
Leonardo Maffei da Silva
-
4 years ago
0
detect assignment x=
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Parse list of arguments
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
URL Path (After Port) (Without Asterisk Wildcard)
ECMAScript (JavaScript)
This is a valid URL Path which should be written after Port or Basepath This URL Path doesn't support asterisk wildcard (/) (path). If you want to support asterisk wildcard, just add * in the last matching group. Like this: [A-Za-z0-9*] This implementation was meant for personal use, feel free to...
Submitted by
anonymous
-
4 years ago
0
Get domain or filename from link
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
NUTS Expression 1
PCRE (PHP <7.3)
NUTS Expression parsing: Outer function name and args detection
Submitted by
anonymous
-
4 years ago
0
NUTS Expression 2
Python
NUTS Expression: split the args
Submitted by
anonymous
-
4 years ago
0
NUTS Expression 3
Python
NUTS Expression: detect kwarg
Submitted by
anonymous
-
4 years ago
0
VAT label
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
VAT label
Python
no description available
Submitted by
anonymous
-
4 years ago
0
YouTube ID and timestamp extraction
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
General
ECMAScript (JavaScript)
no description available
Submitted by
juan
-
4 years ago
0
DB2 to Oracle - CURRENT DATE
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
DB2 to Oracle - CURRENT TIME
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
regex last variable
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
check password complexity
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
not static GS::(..)LogLine
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
逆向预查
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
299
300
301
302
303
...
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)