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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 2,880 community submitted regex patterns...
1
Match IP Address with Subnet
PCRE2 (PHP >=7.3)
dailynewstalk.org
Submitted by
anonymous
-
a month ago
1
Match Complex Strings with Nested Patterns
PCRE2 (PHP >=7.3)
scrolltalk.com
Submitted by
anonymous
-
a month ago
1
Match HTML Entities
PCRE2 (PHP >=7.3)
investprive.com
Submitted by
anonymous
-
a month ago
1
Extract Mixed Content (Text and Numbers)
PCRE2 (PHP >=7.3)
selfdirect.org
Submitted by
anonymous
-
a month ago
1
Match Hexadecimal Strings
PCRE2 (PHP >=7.3)
ud2002.org
Submitted by
anonymous
-
a month ago
1
Match Version Numbers (e.g., 1.0.0, 2.3.4)
PCRE2 (PHP >=7.3)
monsterdare.com
Submitted by
anonymous
-
a month ago
1
Extract Domain Names with TLD
PCRE2 (PHP >=7.3)
salientsocial.com
Submitted by
anonymous
-
a month ago
1
Match Strings with Special Characters
PCRE2 (PHP >=7.3)
myplacepoints.com
Submitted by
anonymous
-
a month ago
1
Extract Non-Alpha Numeric Characters
PCRE2 (PHP >=7.3)
quickpicapp.com
Submitted by
anonymous
-
a month ago
1
Match Hexadecimal Color with Optional Alpha
PCRE2 (PHP >=7.3)
theunjob.com
Submitted by
anonymous
-
a month ago
1
Match Nested HTML Tags
PCRE2 (PHP >=7.3)
techono.me
Submitted by
anonymous
-
a month ago
1
Match Floating Numbers with Optional Scientific Notation
PCRE2 (PHP >=7.3)
thecoversproject.org
Submitted by
anonymous
-
a month ago
1
Match URL Parameters with Optional Values
PCRE2 (PHP >=7.3)
youngfreeflorida.com
Submitted by
anonymous
-
a month ago
1
Match XML Self-Closing Tags
PCRE2 (PHP >=7.3)
comicdiversity.com
Submitted by
anonymous
-
a month ago
1
Extract Dates in Long Format
PCRE2 (PHP >=7.3)
simplicitylabs.net
Submitted by
anonymous
-
a month ago
1
Extract Phone Numbers (International)
PCRE2 (PHP >=7.3)
spooonful.com
Submitted by
anonymous
-
a month ago
1
Extract HTML Attribute Values
PCRE2 (PHP >=7.3)
statussearch.net
Submitted by
anonymous
-
a month ago
1
Extract Multi-Line Comments (JavaScript)
PCRE2 (PHP >=7.3)
sinceretheory.net
Submitted by
anonymous
-
a month ago
1
Match Phone Numbers with Extensions
PCRE2 (PHP >=7.3)
canitbenews.com
Submitted by
anonymous
-
a month ago
1
Match Lines Starting with Specific Word
PCRE2 (PHP >=7.3)
ecuadorminingnews.com
Submitted by
anonymous
-
a month ago
1
...
133
134
135
136
137
...
144
Match any url in text or html (http, https)
4
Regular Expression
PCRE2 (PHP >=7.3)
/
(?:
http
[
s
]
?
:
\/\/
.
)?
(?:
www
\.
)?
[
-a
-
zA
-
Z0
-
9@%._
\+
~#=
]
{2,256}
\.
[
a
-
z
]
{2,6}
\b
(?:
[
-a
-
zA
-
Z0
-
9@:%_
\+
.~#?&
\/\/
=
]
*
)
/
gm
Open regex in editor
Description
Match any url in text or html (http, https)
Submitted by
Jérémy Munsch
-
3 years ago