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
MongoDB Connection String
ECMAScript (JavaScript)
A regEx to validate a mongoDb connection string like the following: mongodb+srv://user:pass@subdomain.domain.com:27107/fDb/?replicaSet=myRepl&ssl=true
Submitted by
F2BEAR
-
3 years ago
(Last modified 3 years ago)
0
Latex Quotes
PCRE2 (PHP >=7.3)
Convert "text" to ``text''
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Regex for Nigerian Phone number
PCRE2 (PHP >=7.3)
Regex to validate a Nigerian phone number
Submitted by
Kelechi Apugo
-
3 years ago
0
Match Last Word Of Each Line
PCRE2 (PHP >=7.3)
Nice if you need to remove or extract the last word\string on a line.
Submitted by
Heath Brown
-
3 years ago
0
Income range Extraction
PCRE2 (PHP >=7.3)
Now that we have Income in a column we can split it up into upper and lower as they are two different values. We can use multiple ways to extract this information, seperate, extract, or case_when. I will be using extract as this provides the best way to collect this information.
Submitted by
anonymous
-
3 years ago
1
Match anything under $15.99
PCRE2 (PHP >=7.3)
^\-?\$0-1+(\.[0-9]{2,2})?$|^\-?\$[0-5]+(\.[0-9]{2,2})?$
Submitted by
https://square.to
-
3 years ago
0
otros
PCRE (PHP <7.3)
a
Submitted by
anonymous
-
3 years ago
0
HealthMatch Wordpress specialists index
PCRE2 (PHP >=7.3)
Specialists index
Submitted by
anonymous
-
3 years ago
1
1
ECMAScript (JavaScript)
1
Submitted by
anonymous
-
3 years ago
1
Currency amount validation with sign (cents optional)
ECMAScript (JavaScript)
Allows Number: Currency amount US (cents optional) Can use US-style 123,456.78 notation Optional thousands separators; optional two-digit fraction; commas; dollar sign
Submitted by
NatZol
-
3 years ago
0
url check
PCRE2 (PHP >=7.3)
check for urls
Submitted by
naxmefy
-
3 years ago
0
Number, Upper, Lower, SpecialChars
PCRE2 (PHP >=7.3)
/^(?=.?[A-Z])(?=.?[a-z])(?=.?[0-9])(?=.?[#?!@$%^&-]).$/gm
Submitted by
anonymous
-
3 years ago
0
alphabet and number allowed
PCRE2 (PHP >=7.3)
/^(?=.?[a-zA-Z])(?=.?[0-9])/gm
Submitted by
anonymous
-
3 years ago
0
Adds JsonPropertyName attribute to class members in a C# class
PCRE2 (PHP >=7.3)
Useful for adding JsonPropertyName to a bunch of class members. Given: ` public string MemberId { get; set; } `...
Submitted by
PatrickV
-
3 years ago
0
Port range validation
PCRE2 (PHP >=7.3)
Regex to match tcp/udp port and range. Comma can be used as delimiter
Submitted by
anonymous
-
3 years ago
0
Our Box # Format Reader/Checker
PCRE2 (PHP >=7.3)
This is used to check and grab parts from our box # format at our production facility.
Submitted by
edp9884
-
3 years ago
0
Html Color Regex
ECMAScript (JavaScript)
This Regex can be used to validate the different format of colors in the HTML
Submitted by
Pranomvignesh
-
3 years ago
0
Friendzymes: dna-annotate github action example
Golang
Example input-pattern for the Friendzymes GitHub Action dna-annotate.
Submitted by
Friendzymes Team
-
3 years ago
0
Match word or phrase not preceded by another word or phrase
PCRE2 (PHP >=7.3)
Modified from this StackOverflow answer, this Regex matches a word or phrase which is not preceded by another word or phrase
Submitted by
anonymous
-
3 years ago
0
Match password
Python
Requirements: At least one lower and one upper case letter At least one digit or special character
Submitted by
anonymous
-
3 years ago
1
...
187
188
189
190
191
...
901
Community Library Entry
0
Regular Expression
Python
r"
(
[
0
-
9
]
{1,2}
\s
+
d
\s
?
e
?
\s
+
\&
?
\&
?
[
a
-
zà
-
ü
]
{4,9}
\s
+
[
0
-
9
]
{4}
\,
?
\s
?
(
[
àa
]
s
\s
+
)?
\&
?
\&
?
[
0
-
9
]
{2}
(
:
|
h
|
h:
)
[
0
-
9
]
{2}
)
"
g
Open regex in editor
Description
no description available
Submitted by
anonymous
-
6 years ago