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
digits repeat 4 times
PCRE2 (PHP >=7.3)
digits repeat
Submitted by
anonymous
-
3 years ago
0
Element alert parser - log link
ECMAScript (JavaScript)
Extract link to log from Element alert notification
Submitted by
anonymous
-
3 years ago
0
Element alert parser - workflow name
ECMAScript (JavaScript)
Parse workflow name from Element alert notification
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Element alert parser - error message
ECMAScript (JavaScript)
Extract error message from Element alert notification
Submitted by
anonymous
-
3 years ago
0
text PUNCT text TO text HYPHEN text
PCRE2 (PHP >=7.3)
text PUNCT text TO text HYPHEN text
Submitted by
anonymous
-
3 years ago
0
^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])[0-9a-zA-Z]{8,}$
PCRE2 (PHP >=7.3)
password validation
Submitted by
anonymous
-
3 years ago
0
Test
PCRE2 (PHP >=7.3)
Test
Submitted by
anonymous
-
3 years ago
0
American to Dutch date - QUESTION
PCRE2 (PHP >=7.3)
REGEX course work
Submitted by
JFD
-
3 years ago
0
Less or greater than characters except simple html tags
ECMAScript (JavaScript)
greater
Submitted by
s0updev
-
3 years ago
0
Parse filters
PCRE2 (PHP >=7.3)
query string filters
Submitted by
maxime vincent
-
3 years ago
0
check if input is all space
PCRE2 (PHP >=7.3)
title
Submitted by
Anon
-
3 years ago
0
Phone Number Validation Tester
ECMAScript (JavaScript)
Testing international phone numbers
Submitted by
Richmond
-
3 years ago
0
DA-1551: Spacing Issues - Tabs
ECMAScript (JavaScript)
DA-1551: Spacing Issues - Tabs
Submitted by
Spacing Issues - Tabs
-
3 years ago
0
Parse VB.Net
PCRE (PHP <7.3)
Goal is to map Visual Basic functions: their names, input parameters, dependencies, and outputs. Eventual goal is to map interactions between functions to identify circular logic.
Submitted by
anonymous
-
3 years ago
0
Match numbers separated by comma
PCRE2 (PHP >=7.3)
Match numbers separated by comma
Submitted by
Nedim Rasimoğlu
-
3 years ago
0
Last Name, First Name with some extras
PCRE2 (PHP >=7.3)
Restricts the input of the field to the following format: (Last Name, First Name) The parentheses are included as part of the restriction. Additionally, this formatting allows for hyphenated names, first or last names with more than one word (i.e., Mary Beth, Smith-Doe, etc.).
Submitted by
Alexa
-
3 years ago
0
MPower
PCRE2 (PHP >=7.3)
match facets sizes
Submitted by
simon pa
-
3 years ago
0
ip_adress_ping_regex
Python
link to ip_regex
Submitted by
anonymous
-
3 years ago
0
First Name (+ Middle Name) and Last Name Shredder
Java 8
Allows you to shredder first name (+ middle name) and last name.
Submitted by
Yusuf Yaşar
-
3 years ago
0
Zarf docker domain matcher
Golang
Used by Zarf to swap the registry domain/port part an image url without needed the docker libraries. usage in go: func SwapHost(src string, targetHost string) string { var parser = regexp.MustCompile((?im)^([a-z0-9\-.]+\.[a-z0-9\-]+:?[0-9]*)?/?(.+)$) var substitution = targetHost + "/$2" return...
Submitted by
Jeff McCoy
-
3 years ago
1
...
787
788
789
790
791
...
902
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
^
(
\w
+
-
?
?
\.
?
\w
+
?
\s
+
?
)
(
IN
\s
+
?
[
ACNAME
]
{1,5}
\s
+
)
(
\d
{1,}
)
(
\s
+
)
(
\d
{1,3}
\.
\d
{1,3}
\.
\d
{1,3}
\.
\d
{1,3}
)
$
/
Open regex in editor
Description
move TTL field from route53 zone export from right to left to "IN A/CNAME"
Submitted by
shawn.puschnig@medialets.com
-
9 years ago