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 12,660 community submitted regex patterns...
0
Change white color text in html
ECMAScript (JavaScript)
Find the white color text in html. Using replace command we have to change some other colors
Submitted by
anonymous
-
4 years ago
0
Find white color text in html HSL
ECMAScript (JavaScript)
Find white color text in html (hsl)
Submitted by
anonymous
-
4 years ago
0
Find Input tag in html
PCRE (PHP <7.3)
Find the tag in html to remove from html
Submitted by
anonymous
-
4 years ago
0
Saiko
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Get MangaDex TitleID
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
Find comment text in html
ECMAScript (JavaScript)
Find the Comment text in html to remove from html
Submitted by
anonymous
-
4 years ago
0
Match .Net Regions
PCRE (PHP <7.3)
no description available
Submitted by
Denifer Santiago
-
4 years ago
0
Phonenumber Guinea
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Phonenumber Guinea
PCRE (PHP <7.3)
phone number regex for Guinea
Submitted by
anonymous
-
4 years ago
0
ex. 2.1 (6)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
ex. 2.1 (4)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
re1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
positive look behind and positive look ahead
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Local and International Phone Numbers
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
Refunded amount
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
IFT 383 – H01 Q14
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
html tags
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
tr inside
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
DisplayOS Font spec for use on widgets
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Post Deploy
PCRE (PHP <7.3)
Only matches on post deploy tasks/checkboxes Will not match a pattern with a colon (:) in it
Submitted by
anonymous
-
4 years ago
1
...
280
281
282
283
284
...
633
Community Library Entry
16
Regular Expression
ECMAScript (JavaScript)
/
^
(?=
.
*
[
0
-
9
]
)
(?=
.
*
[
a
-
z
]
)
(?=
.
*
[
A
-
Z
]
)
(?=
.
*
[
@#$%^&+=.
\-
_*
]
)
(
[
a
-
zA
-
Z0
-
9@#$%^&+=*.
\-
_
]
){3,}
$
/
Open regex in editor
Description
Safe Password that allow only with a number, a lowercase, a uppercase, and a special character
Submitted by
davidlondono
-
10 years ago