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 9,220 community submitted regex patterns...
0
Verify Indian mobile number(印度手机号码正则)
PCRE (PHP <7.3)
国家:India 中文名称:印度 区域码:+91 手机号位数:10 号段:7503、7504、8000、900 ...
Submitted by
7kk
-
4 years ago
0
Character Match Replace + Capturing Group
PCRE (PHP <7.3)
s matches the character s literally (case sensitive) 1st Capturing Group (\d) \d matches a digit (equivalent to [0-9]) Global pattern flags...
Submitted by
Dan
-
4 years ago
0
Remove Text after Parenthesis
PCRE (PHP <7.3)
/ \).$ / gm \) matches the character ) literally (case sensitive) ...
Submitted by
Dan
-
4 years ago
0
medicine
PCRE (PHP <7.3)
about medicine
Submitted by
fcs
-
4 years ago
(Last modified 4 years ago)
0
匹配整数(带小数位)
PCRE (PHP <7.3)
匹配小数位的整数,或者匹配整数
Submitted by
solelyli
-
4 years ago
0
Generate random alpha characters
PCRE (PHP <7.3)
Given a string, generate random alpha characters of a particular length
Submitted by
Chetan
-
4 years ago
0
RegexJSON
PCRE (PHP <7.3)
Json add q
Submitted by
anonymous
-
4 years ago
0
Mac Address
PCRE (PHP <7.3)
Mac address is 6 parts of 2 hexadecimal digits separated by a special character "-" so, there are 5 parts of digits followed by the character "-" then, one part without that character.
Submitted by
EMAM1999
-
4 years ago
0
Reguläre Ausdrücke
PCRE (PHP <7.3)
Eine Aufgabe die man Lösen muss, wenn man die Lösung kennt.
Submitted by
anonymous
-
4 years ago
0
Hitomi.la
PCRE (PHP <7.3)
this is used for Hdoujin download Hitomi.la Instance
Submitted by
anonymous
-
4 years ago
0
Hexadecimal code
PCRE (PHP <7.3)
4 "digit" hexadecimal code
Submitted by
anonymous
-
4 years ago
0
getChannelVideos()
PCRE (PHP <7.3)
To download the information of Youtube Channel Videos
Submitted by
anonymous
-
4 years ago
0
getchannel
PCRE (PHP <7.3)
get channel
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
Useless texts
PCRE (PHP <7.3)
Useless texts
Submitted by
Antério vieria
-
4 years ago
0
Litecoin-1fcfd
PCRE (PHP <7.3)
litecoin:Ldeontgmqp8NJnwk8pwcM4gv31VhJL2WgS?label=luckyfish.%20io%20tnlzsp6i93b9
Submitted by
anonymous
-
4 years ago
0
filter Google Cloud monitoring labels
PCRE (PHP <7.3)
useful for filtering data from Gooogle Compute Engine monitoring into grafana
Submitted by
NR0Q
-
4 years ago
0
Single Letter, No Numbers + Letter Exclusions
PCRE (PHP <7.3)
Allow users to only enter a single letter, no numbers, and determine which characters they are not allowed to enter (both uppercase and lowercase).
Submitted by
anonymous
-
4 years ago
0
Words that not begining with a consonant character
PCRE (PHP <7.3)
Match all words that not begining with a vowel character
Submitted by
Hadi Akbarzadeh
-
4 years ago
0
add interfaces to ef models
PCRE (PHP <7.3)
Use this to add interfaces to ef models using vs replace all with regex
Submitted by
anonymous
-
4 years ago
0
Links in HTML
PCRE (PHP <7.3)
Example href="https://example.com"
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
1
...
280
281
282
283
284
...
461
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