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,020 community submitted regex patterns...
0
AsciiDoc hard line break
Java 8
https://docs.asciidoctor.org/asciidoc/latest/blocks/hard-line-breaks/
Submitted by
aisbergde
-
2 years ago
0
Base64 Image Data URI finder
ECMAScript (JavaScript)
The expression is intended for finding one or more embedded Base64 Data URI in an HTML document. It will not find matches for any HTML surrounding the encoded Data URI match ( tag or src attributes), just the encoded data and MIME header, all that's needed to decode. The MIME type is for images in ...
Submitted by
Attention Deficit Hyperactivity Disorder
-
2 years ago
(Last modified 2 years ago)
0
AsciiDoc Superscript
Java 8
https://docs.asciidoctor.org/asciidoc/latest/text/subscript-and-superscript/
Submitted by
aisbergde
-
2 years ago
0
AsciiDoc Subscript
Java 8
https://docs.asciidoctor.org/asciidoc/latest/text/subscript-and-superscript/
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 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
Spotify ID regex
PCRE (PHP <7.3)
Spotify ID regex
Submitted by
anonymous
-
2 years ago
0
/w
Python
?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~абвгдеёжзийклмнопрстуфхцчшщъыьэюяАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ !"#$%&\'()*+,-./0123456789:;
Submitted by
anonymous
-
2 years ago
1
Fix markdown image in header
PCRE2 (PHP >=7.3)
I was converting from markdown to another format & it didn't allow images in headers so this Regex finds an image in a header & moves it before the header.
Submitted by
thefinnomenon
-
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
Email Regex
PCRE2 (PHP >=7.3)
A well equiped regex
Submitted by
anonymous
-
2 years ago
0
Soundcloud pattern
PCRE2 (PHP >=7.3)
Soundcloud pattern
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
https
ECMAScript (JavaScript)
https
Submitted by
anonymous
-
2 years ago
0
suprnana
PCRE2 (PHP >=7.3)
whodis
Submitted by
anonymous
-
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
meter number
Python
meter number
Submitted by
econ
-
2 years ago
0
Divide AAAA and MMGG
PCRE2 (PHP >=7.3)
Division between AAAA and MMGG
Submitted by
Alessandro
-
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
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
1
...
108
109
110
111
112
...
901
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(
\b
|
^
)
(
[
А
-
Яа
-
яA
-
Za
-
z
]
{2,7}
\s
*
(
\(
.
{1,3}
\)
){0,1}
[
\s
-
]
+
[
А
-
Яа
-
яA
-
Za
-
z
]
*
)
\s
*
(
(
\d
{1,4}
[
-
\+\/
xXхХ
\*
]
[
\d
,
]
{1,4}
)+
\s
*
[
a
-
zA
-
Zа
-
яА
-
я
]
{0,3}
(
\(
.
{1,4}
\)
){0,1}
\+
*
){1,3}
-
*
[
\d
,
]
{0,4}
\s
*
[
A
-
Za
-
zА
-
Яа
-
я
\(\)
]
{0,4}
(
\b
|
$
)
/
g
Open regex in editor
Description
no description available
Submitted by
anonymous
-
7 years ago