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,040 community submitted regex patterns...
1
Authelia regex path rules
Golang
Testing Authelia subdomain / path rules. You can read more at the Authelia Docs By default, this regex101 page is shown a test for a generic API path domain: "some-sub.drpranavmishra.com" resources:...
Submitted by
Pranav Mishra
-
2 years ago
(Last modified 2 years ago)
0
ajuda
PCRE2 (PHP >=7.3)
criado para fins de teste
Submitted by
anonymous
-
2 years ago
0
traceid or teace_id of skywalking
PCRE2 (PHP >=7.3)
match for traceid of skywalking etc.
Submitted by
czwanga
-
2 years ago
(Last modified 2 years ago)
1
lazada share mobile url
PCRE2 (PHP >=7.3)
regex for lazada share link from mobile apps
Submitted by
lavi
-
2 years ago
1
lazada campaign
PCRE2 (PHP >=7.3)
regex lazada campaign url
Submitted by
lavi
-
2 years ago
1
lazada product desktop
PCRE2 (PHP >=7.3)
lazada url product desktop
Submitted by
lavi
-
2 years ago
1
shopee url from desktop browser
PCRE2 (PHP >=7.3)
regex for shopee url from desktop browser
Submitted by
lavi
-
2 years ago
1
shopee video
PCRE2 (PHP >=7.3)
regex for share shopee video from mobile app
Submitted by
lavi
-
2 years ago
1
shopee share link from mobile
PCRE2 (PHP >=7.3)
regex for shopee share link in mobile app
Submitted by
lavi
-
2 years ago
1
shopee live video
PCRE2 (PHP >=7.3)
regex for shopee live video
Submitted by
lavi
-
2 years ago
0
Dotnet Solution Project Parser
PCRE2 (PHP >=7.3)
Parse the projects listed in a sln file
Submitted by
github.com/rbleattler
-
2 years ago
(Last modified 2 years ago)
0
domain name with subdomains
PCRE (PHP <7.3)
should match any domain with one or more subdomains
Submitted by
Igor Tiulkanov
-
2 years ago
0
SnackVideo and Others Social Media
PCRE2 (PHP >=7.3)
This syntax I've used to block SnackVideo and others social media (Helo, Likee, Smule, etc) that use google services on their site. Currently tested on Adguard Home.
Submitted by
devinaws
-
2 years ago
0
valid path
PCRE2 (PHP >=7.3)
valid path
Submitted by
anonymous
-
2 years ago
0
Cloudfront.net
PCRE2 (PHP >=7.3)
This syntax I've used to block some Indonesian gambling site that using cloudflare services to hide their real IP address. "Use at your own risk"
Submitted by
anonymous
-
2 years ago
0
Trimmed (no unicode space separators at start or end of string
ECMAScript (JavaScript)
Disallows all space-like characters -- see https://www.fileformat.info/info/unicode/category/Zs/list.htm -- at the start or end of the string
Submitted by
anonymous
-
2 years ago
0
Find anything between comillas.
PCRE2 (PHP >=7.3)
This regex gets anything between double quotes.
Submitted by
Tomas Giordano
-
2 years ago
1
phones
ECMAScript (JavaScript)
Разбирает список телефонов, разделенных ;
Submitted by
Alex
-
2 years ago
1
date time validation
.NET 7.0 (C#)
Validation of the date of time, taking into account the high year in the format date.ToString("yyMMdd-hh_mm_ss").
Submitted by
Oleksii Serikov (alex@neochrom.biz)
-
2 years ago
0
Amadeus TST Match
PCRE2 (PHP >=7.3)
Analyzes Amadeus TST element
Submitted by
anonymous
-
2 years ago
1
...
59
60
61
62
63
...
902
Community Library Entry
1
Regular Expression
Rust
r"
(?P<function>
def
\s
+
(?P<function_name>
\w
+
)
\s
*
\(
(?P<parameters>
(?:
.
|
\n
)*
?
)
\)
:
\s
*
(?:
\n
[
\t
]
+
.
*
?
)*
\n
)
"
g
Open regex in editor
Description
Gets the python function declarations
Submitted by
anonymous
-
2 years ago