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
date german
PCRE (PHP <7.3)
dd.mm.yyyy
Submitted by
anonymous
-
6 years ago
0
actual
Python
no description available
Submitted by
anonymous
-
6 years ago
0
strict major, minor, patch
Python
no description available
Submitted by
anonymous
-
6 years ago
0
strict major, minor
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Almega Formable
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
find irregular csv groupings
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
SCORM 2004 TIMEINTERVAL PCRE
PCRE (PHP <7.3)
Capture parts of SCORM 2004 TIMEINTERVAL format Format PyYdDnMS]] ...
Submitted by
Systho
-
6 years ago
0
youtube iframe embed code src video id and params
ECMAScript (JavaScript)
Matches full src url and individual video id and params in a YouTube iframe embed tag.
Submitted by
Robert Klein Kromhof
-
6 years ago
0
google index parsing (with titles and descriptions)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
email valiodator1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
domains
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
CSRF Extractor
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Url Redirect
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Mikrotik framed-route
PCRE (PHP <7.3)
Framed-route for Mikrotik routers
Submitted by
anonymous
-
6 years ago
0
Time Zones
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
before / after
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
new line
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Replace multi 's
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
js_htparser_extract_options
PCRE (PHP <7.3)
Extract the options from a rule in the js_htparser framework {{ request: key option1:value1 option2:value2 }} When executing the regex the matches will be: group1 = option key ( 1. iteration: option1, 2. iteration: option2 ) group2 = option value ( 1. iteration: value1, 2. iteration: value2 )
Submitted by
Alexander Bassov
-
6 years ago
0
auto-gen-test-format
Python
no description available
Submitted by
anonymous
-
6 years ago
1
...
161
162
163
164
165
...
900
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
^
(
(
[^
<>()[
\]\\
.,;:
\s
@"
]
+
(
\.
[^
<>()[
\]\\
.,;:
\s
@"
]
+
)*
)
|
(
"
.
+
"
)
)
@
(
(
\[
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\]
)
|
(
(
[
a
-
zA
-
Z
\-
0
-
9
]
+
\.
)+
[
a
-
zA
-
Z
]
{2,}
)
)
$
/
Open regex in editor
Description
Regex for email validation
Submitted by
anonymous
-
3 years ago