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 14,400 community submitted regex patterns...
0
protocol ip port
PCRE2 (PHP >=7.3)
no description available
Submitted by
0bel1sk
-
4 years ago
0
WP thumbnail regex
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
SEO dest pages
PCRE2 (PHP >=7.3)
Find any URL that sits in the /holidays/ subfolder and ends with .html
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
ICD10 Number
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
calibre
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Whitespace agnostic variable declaration (Python re compatible)
PCRE (PHP <7.3)
Define variables in existing text documents. One variable per line
Submitted by
Janelle Weber
-
4 years ago
(Last modified 4 years ago)
0
calibre 3
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Name (line) - still not working
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
name (paragraph)
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
CPF
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
CNPJ
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
RG
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
CNH
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
Work Card
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
Passport
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
Voter Registration Card
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
Address (line)
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
Address (Paragraph)
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
E-mail
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
IPV4
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
1
...
591
592
593
594
595
...
720
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