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
tokenize
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Whatsapp data extract
PCRE (PHP <7.3)
Extract data from whatsapp exported chat. working, but in development.
Submitted by
anonymous
-
6 years ago
0
Недревесное сырье
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex Match all characters between two strings
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
IP regex
PCRE (PHP <7.3)
Match IP address that works fine on an acl rule for a Squid config file : acl aclname src ip-address/mask ... # clients IP address [fast] acl aclname src addr1-addr2/mask ... # range of addresses [fast] acl aclname dst [-n] ip-address/mask ... # URL host's IP address [slow] acl aclname localip ip-ad...
Submitted by
anonymous
-
6 years ago
0
lol2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex Match all characters between two strings
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
CF
PCRE (PHP <7.3)
Reg1
Submitted by
anonymous
-
6 years ago
0
保留小数点后两位
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
正整数
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
中文校验
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
金额校验
ECMAScript (JavaScript)
11位正整数,两位小数
Submitted by
anonymous
-
6 years ago
0
SPF syntax checker
PCRE (PHP <7.3)
This regex is meant to check the SPF records of domains.
Submitted by
anonymous
-
6 years ago
0
For Removing 2 or More Dots
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Separate Studio/Movie Title Info From Filename for Plex
Python
Separate Studio/Movie Title Info From Filename for Plex This regex is ultimately used by a Plex Media Server Agent to parse various information from a filename when Plex is scanning a media directory. The regex uses named groups studio and clip_name to store the information that is parses so that ...
Submitted by
anonymous
-
6 years ago
0
Regex for Nginx Ingress (Preview API)
PCRE (PHP <7.3)
Request: get a specific segment of URL related to Language and add it as a query string, plus stripping of first 2 segments of the incoming URL: Group 1: language (which becomes QS) Group 2: second part of the URL to be maintained Group 3: empty...
Submitted by
anonymous
-
6 years ago
0
Regex for Nginx Ingress (Preview API)
PCRE (PHP <7.3)
Request: get a specific segment of URL related to Language and add it as a query string, plus stripping of first 2 segments of the incoming URL: Group 1: language (which becomes QS) Group 2: second part of the URL to be maintained Group 3: Question mark "?" which needs to be removed...
Submitted by
anonymous
-
6 years ago
0
Yes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex for Nginx Ingress
PCRE (PHP <7.3)
Request: get a specific segment of URL related to Language and add it as a query string, plus stripping of first 2 segments of the incoming URL: Group 1: first part of the URL to be maintained Group 2: language (which becomes QS) Group 3: second part of the URL to be maintained...
Submitted by
anonymous
-
6 years ago
0
Fastighet base parameter
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
445
446
447
448
449
...
900
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
[
+-
]
?
(
(
\d
+
(
\.
\d
*
)?
)
|
(
(
\d
*
\.
\d
+
)
)
)
(
e
[
-+
]
?
\d
*
)?
/
gm
Open regex in editor
Description
Matches: 1.0 .01 100. 1e-10 1.0e3 0.2e10
Submitted by
anonymous
-
6 years ago