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...
0
hostname to django CORS_ALLOWED_ORIGIN_REGEXES
PCRE2 (PHP >=7.3)
hostname to django CORS_ALLOWED_ORIGIN_REGEXES
Submitted by
anonymous
-
2 years ago
0
Changed files in "git pull" output.
Python
Get the changed files from the "git pull" output. Use finditer to get a list of Matches.
Submitted by
anonymous
-
2 years ago
0
Stack Overflow 73802045
PCRE2 (PHP >=7.3)
Regex to remove blank lines at the end of a CSV
Submitted by
Aaron Meese
-
2 years ago
0
Python find {vars}
Python
Find every used variable in string between { and }
Submitted by
anonymous
-
2 years ago
0
ipOrIpRangeOrCidrWithWildcard
ECMAScript (JavaScript)
ip Or IpRange Or Cidr With Wildcard
Submitted by
anonymous
-
2 years ago
0
Regex date_type_idSigma. OR date_type_sousType_idSigma. OR date_type_idSigma_champLibre
PCRE2 (PHP >=7.3)
Regex date_type_idSigma. OR date_type_sousType_idSigma. OR date_type_idSigma_champLibre
Submitted by
JamesAdams
-
2 years ago
0
AEM access.log - field extraction for SPLUNK
PCRE2 (PHP >=7.3)
AEM access.log - field extraction for SPLUNK
Submitted by
Robert Wunsch (wunsch@adobe.com)
-
2 years ago
0
AEM - Author & Publisher - access.log - RegEx for SPLUNK fields (fi2Bmn/1)
PCRE2 (PHP >=7.3)
AEM - Author & Publisher - access.log - RegEx for SPLUNK fields (fi2Bmn/1)
Submitted by
Robert Wunsch (wunsch@adobe.com)
-
2 years ago
0
AEM - Author & Publisher - error.log - RegEx for SPLUNK fields
PCRE2 (PHP >=7.3)
AEM - Author & Publisher - error.log - RegEx for SPLUNK fields
Submitted by
Robert Wunsch (wunsch@adobe.com)
-
2 years ago
0
AEM - Dispatcher - access.log - Regex for SPLUNK fields
PCRE2 (PHP >=7.3)
AEM - Dispatcher - access.log - Regex for SPLUNK fields
Submitted by
Robert Wunsch (wunsch@adobe.com)
-
2 years ago
0
AEM - Author & Publisher - access.log - REGEX for SPLUNK fields
PCRE2 (PHP >=7.3)
AEM - Author & Publisher - access.log - REGEX for SPLUNK fields
Submitted by
Robert Wunsch (wunsch@adobe.com)
-
2 years ago
0
AEM - Author & Publisher - error.log - RegEx for SPLUNK fields
PCRE2 (PHP >=7.3)
AEM - Author & Publisher - error.log - RegEx for SPLUNK fields
Submitted by
Robert Wunsch (wunsch@adobe.com)
-
2 years ago
0
AEM SPLUNK - Packages being installed
PCRE2 (PHP >=7.3)
AEM SPLUNK - Packages being installed
Submitted by
Robert Wunsch (wunsch@adobe.com)
-
2 years ago
0
No Squares
PCRE2 (PHP >=7.3)
Match not square brackets
Submitted by
max
-
2 years ago
0
Russian phone validation
PCRE2 (PHP >=7.3)
This expression validates russian phones in different formats
Submitted by
zkelo
-
2 years ago
(Last modified a year ago)
0
Test mail
PCRE2 (PHP >=7.3)
Email test
Submitted by
anonymous
-
2 years ago
0
Prefixed numerics
Python
Search regex for prefixed numerics (kB, Mb. ms. kHz etc.)
Submitted by
delameter
-
2 years ago
0
Match Drupal admin routes
ECMAScript (JavaScript)
Regular expression to match any Drupal admin route
Submitted by
anonymous
-
2 years ago
0
Invalid HTML syntax regex
PCRE2 (PHP >=7.3)
A bare demo of detecting syntactically invalid HTML, created for jridgewell/proposal-regexp-atomic-and-possessive#1. It's a proposal for the + quantifier modifier for ECMAScript regular expressions. Currently only properly detects invalid ending tags, and is only about having the correct syntax.
Submitted by
Keyacom
-
2 years ago
(Last modified 2 years ago)
0
Verify email
Java 8
Regex for email
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
1
...
843
844
845
846
847
...
902
Community Library Entry
0
Regular Expression
Python
r"
(
Client
URL:
)
(
(
[
\w
\.\-\+
]
+
:
)
\/
{2}
(
(
[
\w\d
\.
]
+
)
:
(
[
\w\d
\.
]
+
)
)?
@
?
(
(
[
a
-
zA
-
Z0
-
9
\.\-
_
]
+
)
(?:
:
(
\d
{1,5}
)
)?
)
)?
(
\/
(?:
[
a
-
zA
-
Z0
-
9
\.\-\/\+\%
]
+
)?
)
(?:
\?
(
[
a
-
zA
-
Z0
-
9=%
\-
_
\.\*
&;
]
+
)
)?
(?:
#
(
[
a
-
zA
-
Z0
-
9
\-
=,&%;
\/\\\"
'
\?
]
+
)?
)?
"
gm
Open regex in editor
Description
Pull the Client URL out of the Asana description field using targeted expression.
Submitted by
Al Romano
-
2 years ago