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
Simple CSS selectors
ECMAScript (JavaScript)
Matches all types of CSS selectors
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Regex to Ignore Emoji/Emoticons
ECMAScript (JavaScript)
Regex to Ignore Emoji/Emoticons and allows every character
Submitted by
vishalx06
-
2 years ago
0
Transform a date string into a timestamp
PCRE2 (PHP >=7.3)
Transform a date string like: Mon Nov 10 1957 12:34:56 UTC +08:00 into: 11/10/195 12:34:56
Submitted by
Steve Aughnbaugh
-
2 years ago
(Last modified 2 years ago)
0
ESET Data Framework domains OLD (DNS)
PCRE2 (PHP >=7.3)
Match (incl. old) ESET Data Framework domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
(Last modified 2 years ago)
0
ESET Data Framework domains (DNS)
PCRE2 (PHP >=7.3)
Match ESET Data Framework domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
(Last modified 2 years ago)
0
ESET Repository domains (DNS)
PCRE2 (PHP >=7.3)
Match ESET Repository domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
0
ESET INSPECT Cloud domains (DNS)
PCRE2 (PHP >=7.3)
Match ESET INSPECT Cloud domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
(Last modified 2 years ago)
0
ESET Push Notification Service domains (DNS)
PCRE2 (PHP >=7.3)
Match ESET Push Notification Service domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
0
ESET LiveGuard Advanced domains (DNS)
PCRE2 (PHP >=7.3)
Match ESET LiveGuard Advanced domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
0
ESET Services domains (DNS)
PCRE2 (PHP >=7.3)
Match ESET Services domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
(Last modified 2 years ago)
0
ESET ESET Online Help and Knowledgebase domains (DNS)
PCRE2 (PHP >=7.3)
Match ESET ESET Online Help and Knowledgebase domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
0
ESET MSP Utility domains (DNS)
PCRE2 (PHP >=7.3)
Match ESET MSP Utility domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
0
Kaspersky Security Center update domains (DNS)
PCRE2 (PHP >=7.3)
Match Kaspersky Security Center update domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
0
Kaspersky Security Center update domains (TLS)
PCRE2 (PHP >=7.3)
Match Kaspersky Security Center update domains for exclusion from TLS logs
Submitted by
kernelmustard
-
2 years ago
0
Kaspersky Security Center KSN service domains (DNS)
PCRE2 (PHP >=7.3)
Match Kaspersky Security Center KSN service domains for exclusion from DNS logs
Submitted by
kernelmustard
-
2 years ago
0
find a 6 lenght word with 2 consecutive digits
ECMAScript (JavaScript)
ragex solution for free code camp positive-and-negative-lookahead first assertion is (?=\w{6,}) where im matching for any char (a-z0-9_) and repeating the char matching 6 times, in other words, verifying that this word has 6 char being them a-z or digits. the second assertion was more difficult to...
Submitted by
gabriel silva lima
-
a year ago
0
GET country, prefix extended
ECMAScript (JavaScript)
This regex match group (country & Prefix) Separated by spaces or \s+ ↓↓ Example ↓↓ Australia 61 Dominica 1 (767) República Dominicana 1 (809/829/849) ...
Submitted by
https://github.com/hzvvictor
-
a year ago
(Last modified a year ago)
0
Sustitution of comments (one line) //
ECMAScript (JavaScript)
Sustitution of comments (one line) // Example ~ input (before) ↓↓ : // comment textplain other-text ...
Submitted by
hzvvictor: https://github.com/hzvvictor
-
a year ago
(Last modified a year ago)
0
matrix.to URL regex
Python
Regex to detect and extract detail from matrix.to
Submitted by
anonymous
-
a year ago
0
Matching french integer numbers
PCRE2 (PHP >=7.3)
Matching french integer numbers : group digits by 3 with a space between groups
Submitted by
scalpa
-
a year ago
1
...
566
567
568
569
570
...
902
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
(
\\\\
(
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
)
\\
[
-a
-
zA
-
Z_
0
-
9
]
+
\\
)
(?:
[
-a
-
zA
-
Z_
0
-
9
\.
]
+
\\
)*
/
gm
Open regex in editor
Description
Matches a full UNC path, capturing the IP address, share, and full path.
Submitted by
Harvey Nash
-
2 years ago