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,000 community submitted regex patterns...
0
Github dark theme regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
lkker-cos
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
Words in greek
PCRE (PHP <7.3)
Simples expression to match any words in Greek or Ancient Greek.
Submitted by
anonymous
-
5 years ago
0
Include homepage URL and UTMs but exclude all other pages
PCRE (PHP <7.3)
Useful for GTM if you want to set up a trigger that only fires on homepage (or to use the ReGex does not Equal option to exclude the homepage..) The key thing is this will also include UTM params.
Submitted by
anonymous
-
5 years ago
0
Mermaid parse field text
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Email Validation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
UK Landline Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
regex for copper tif files
Python
https://regex101.com/r/zNfvGn/1
Submitted by
anonymous
-
5 years ago
0
sales upload examples, fix for supporting pre-ecma2018 standard browser
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
us
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
UK generic tel no
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
extract ac code from fasta headers
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Nginx Log Parsing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
SSL Cert name/value parser
PCRE (PHP <7.3)
Used to spllit lines of an SSL cert into name/value pairs
Submitted by
anonymous
-
5 years ago
0
All Words Uppercase
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Find all letters and numbers and - in each line after the first - is encountered. Semantic Versioning 2.0.0 find everything after patch version
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
any number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Networking Parser - Command (show http-server) - Platform (Cisco Nexus Switch)
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Networking Parser - Command (show feature) - Platform (Cisco Nexus Switch)
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Networking Parser - Command (show ip interface brief) - Platform (Cisco Switches/Routers)
Python
no description available
Submitted by
anonymous
-
5 years ago
1
...
627
628
629
630
631
...
900
Community Library Entry
1
Regular Expression
Golang
`
^
(?P<image>
[^
:@
]
+
?
)
(?:
:
(?P<tag>
[^
@
]
+
?
)
)?
(?:
@sha256:
(?P<digest>
.
+
)
)?
$
`
mg
Open regex in editor
Description
Splits a Docker image string into the separate parts:
image, tag, digest tag and digest are optional
Submitted by
Roemer
-
2 months ago