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 3,020 community submitted regex patterns...
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
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
suprnana
PCRE2 (PHP >=7.3)
whodis
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
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
E
PCRE2 (PHP >=7.3)
E
Submitted by
anonymous
-
2 years ago
0
demo
PCRE2 (PHP >=7.3)
regex grouping demo
Submitted by
Lidro
-
2 years ago
0
AsciiDoc unordered list
PCRE2 (PHP >=7.3)
https://docs.asciidoctor.org/asciidoc/latest/lists/unordered/
Submitted by
aisbergde
-
2 years ago
0
AsciiDoc line comment
PCRE2 (PHP >=7.3)
https://docs.asciidoctor.org/asciidoc/latest/comments/
Submitted by
aisbergde
-
2 years ago
0
AsciiDoc attribute definition
PCRE2 (PHP >=7.3)
https://docs.asciidoctor.org/asciidoc/latest/attributes/attribute-entries/
Submitted by
aisbergde
-
2 years ago
0
Attribute reference
PCRE2 (PHP >=7.3)
https://docs.asciidoctor.org/asciidoc/latest/attributes/attribute-entries/
Submitted by
aisbergde
-
2 years ago
0
Auth.log Parsing
PCRE2 (PHP >=7.3)
Parses the auth log on standard linux machines into useful groups.
Submitted by
Jason King
-
2 years ago
(Last modified 2 years ago)
0
json-extract
PCRE2 (PHP >=7.3)
eee
Submitted by
anonymous
-
2 years ago
0
Match CSS Gradients
PCRE2 (PHP >=7.3)
Match CSS Gradients
Submitted by
Sean Dellis
-
2 years ago
(Last modified 2 years ago)
0
HTML Figure Caption German
PCRE2 (PHP >=7.3)
Finds paragraph with German "Bild # ..." and replaces it with HTML expressions for figure and figure caption surrounding it.
Submitted by
Hans Kannewitz
-
2 years ago
(Last modified 2 years ago)
0
add _&_ between numbers
PCRE2 (PHP >=7.3)
adds (space)&(space) between numbers
Submitted by
_
-
2 years ago
0
C#-ifying classes pasted from JSON
PCRE2 (PHP >=7.3)
When pasting JSON payloads, requests or response as C# classes, the casing of property names is not usually idiomatic C#. This regular expression helps transform the property names while adding System.Text.Json.JsonPropertyName attributes to properties to preserve the original names for serialization.
Submitted by
Gareth James
-
2 years ago
1
...
118
119
120
121
122
...
151
Community Library Entry
0
Regular Expression
Python
r"
to=<
(?P<email>
\S
+
)
>,
\s
relay=
(?!
10
\.
10
\.
10
\.
)
(?P<relay>
\S
+
)
,
.
+
dsn=
(?P<dsn>
\d
+
\.
\d
+
\.
\d
+
)
,
\s
status=
(?!
sent
)
(?P<status>
\w
)
\w
+
\s
\(
(?:
host
\s\S
+
\[
\S
+
\]
\s
said:
\s
)?
(?P<code>
\d
{3}
)?
"
g
Open regex in editor
Description
Full regex for failed sendings
Submitted by
anonymous
-
8 years ago