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...
1
select in tag - with no tag
PCRE (PHP <7.3)
as title
Submitted by
Wiktor
-
9 years ago
1
java
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
PDF Boxes Matcher
Python
It should match the Media, Crop, ... boxes
Submitted by
Efrem Sbirul
-
9 years ago
1
-
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Cookie body
PCRE (PHP <7.3)
Get the body of a specific cookie from an HTTP header.
Submitted by
anonymous
-
9 years ago
1
SQLALCHEMY_DATABASE_URI parser
Python
Parse SQLALCHEMY_DATABASE_URI
Submitted by
jdnier
-
9 years ago
1
direct link googldrive
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
PHP identifier
PCRE (PHP <7.3)
The official expression used for variable names, class names, etc. From http://www.php.net/manual/en/language.variables.basics.php
Submitted by
anonymous
-
9 years ago
1
lookbehind + lookahead
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
ruTorrent RSS filter
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
YouTube URL ID matcher
ECMAScript (JavaScript)
Created for replacing everything except video ID from YouTube URL
Submitted by
kamilius
-
9 years ago
1
us date format
PCRE (PHP <7.3)
us date format
Submitted by
denis
-
9 years ago
1
Address Match
Python
no description available
Submitted by
Awk
-
9 years ago
1
Alpha then 7 numbers
PCRE (PHP <7.3)
Alpha then 7 numbers
Submitted by
Jeff Cunningham
-
9 years ago
1
RGBA [0;255]
PCRE (PHP <7.3)
Color RGBA in shape : 255, 255, 255, 255 ',' or ';' are accepted
Submitted by
theBlueBisu
-
9 years ago
1
hurdur
Python
hurdurdurdru
Submitted by
hordor
-
9 years ago
1
nullDateTime
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
GRS50 weight response
PCRE (PHP <7.3)
Matches the meaningful content of a GRS50 scale's weight notification
Submitted by
Ben Leggiero
-
9 years ago
1
multiple IPv4 separated by , or ;
ECMAScript (JavaScript)
no description available
Submitted by
by ab
-
9 years ago
1
...
646
647
648
649
650
...
900
Community Library Entry
40
Regular Expression
PCRE (PHP <7.3)
/
(
(
(
[
A
-
Za
-
z
]
{3,9}
:
(?:
\/\/
)?
)
(?:
[
-;:&=
\+\$
,
\w
]
+
@
)?
[
A
-
Za
-
z0
-
9.-
]
+
|
(?:
www
.
|
[
-;:&=
\+\$
,
\w
]
+
@
)
[
A
-
Za
-
z0
-
9.-
]
+
)
(
(?:
\/
[
\+
~%
\/
.
\w
-_
]
*
)?
\?
?
(?:
[
-
\+
=&;%@.
\w
_
]
*
)
#
?
(?:
[
.
\!\/\\
w
]
*
)
)?
)
/
ig
Open regex in editor
Description
A quite neat regular expression for URLs, e-mails..., I found on Matthew O'Riordan's blog.
Submitted by
Matthew O'Riordan
-
12 years ago