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
bkengine 单行宏匹配
Python
bkengine 单行宏匹配
Submitted by
anonymous
-
2 years ago
0
Match the html tags with only whitespaces
PCRE2 (PHP >=7.3)
Match the html tags with only whitespaces
Submitted by
anonymous
-
2 years ago
0
whatsapp meta data
Python
[8/23/18, 2:05:50 PM]
Submitted by
Mandar Gite
-
2 years ago
0
Match Instagram Post Url
PCRE2 (PHP >=7.3)
Match Instagram Post Url Matches: https://www.instagram.com/p/CiqWEQMOVNo/ https://www.instagram.com/p/CiqWEQMOVNo www.instagram.com/p/CiqWEQMOVNo https://instagram.com/p/CiqWEQMOVNo...
Submitted by
anonymous
-
2 years ago
0
Convert <a href="x">y</a> to [url=x]y[/url]
PCRE (PHP <7.3)
it took me quite some time to figure out. I hope it'll be helful to someone else.
Submitted by
anonymous
-
2 years ago
0
Match all links except for links enclosed in curly brackets
PCRE2 (PHP >=7.3)
Match all links except for links enclosed in curly brackets
Submitted by
anonymous
-
2 years ago
0
Divide AAAA and MMGG
PCRE2 (PHP >=7.3)
Division between AAAA and MMGG
Submitted by
Alessandro
-
2 years ago
0
meter number
Python
meter number
Submitted by
econ
-
2 years ago
0
media timestamp hh:mm:ss.xxx
ECMAScript (JavaScript)
Any number of digits is allowed for every component. Valid examples: 42 => group 3 43.5 => group 3,4 01:02:03.04 => group 1,2,3,4 62:3.04 => group 2,3,4...
Submitted by
eumelzocker
-
2 years ago
(Last modified 2 years ago)
0
suprnana
PCRE2 (PHP >=7.3)
whodis
Submitted by
anonymous
-
2 years ago
0
https
ECMAScript (JavaScript)
https
Submitted by
anonymous
-
2 years ago
0
YouTube regex pattern v2
PCRE2 (PHP >=7.3)
YouTube regex pattern v2
Submitted by
anonymous
-
2 years ago
0
Soundcloud pattern
PCRE2 (PHP >=7.3)
Soundcloud pattern
Submitted by
anonymous
-
2 years ago
0
Email Regex
PCRE2 (PHP >=7.3)
A well equiped regex
Submitted by
anonymous
-
2 years ago
0
Client URL Isolation
Python
Pull the Client URL out of the Asana description field using targeted expression.
Submitted by
Al Romano
-
2 years ago
0
/w
Python
?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~абвгдеёж зийклмнопрстуфхцчшщъыьэюяАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ !"#$%&\'()*+,-./0123456789:;
Submitted by
anonymous
-
2 years ago
0
Spotify ID regex
PCRE (PHP <7.3)
Spotify ID regex
Submitted by
anonymous
-
2 years ago
0
AsciiDoc delimited block quote
PCRE2 (PHP >=7.3)
https://docs.asciidoctor.org/asciidoc/latest/blocks/delimited/ only basic syntax
Submitted by
aisbergde
-
2 years ago
0
AsciiDoc delimited block listing
Java 8
https://docs.asciidoctor.org/asciidoc/latest/blocks/delimited/
Submitted by
aisbergde
-
2 years ago
(Last modified 2 years ago)
0
AsciiDoc Subscript
Java 8
https://docs.asciidoctor.org/asciidoc/latest/text/subscript-and-superscript/
Submitted by
aisbergde
-
2 years ago
1
...
845
846
847
848
849
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
(
(
[
a
-
z0
-
9_"+-
]
+
\.
{0,1}
)*
(
[
a
-
z0
-
9_"+-
]
+
)
){1,64}
@
(
(
\[
{0,1}
(
[
0
-
9
]
{1,3}
.
){3}
[
0
-
9
]
{1,3}
\]
{0,1}
)
|
(
(
[
a
-
z0
-
9
]
[
a
-
z0
-
9_+-
]
+
)
(
\.
[
a
-
z
]
{2,}
)+
)
)
$
/
Open regex in editor
Description
Regex for email with testcase from page
https://www.softwaretestingo.com/test-cases-for-email-field/
Submitted by
BanhPow
-
2 years ago
(Last modified 2 years ago)