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
Grade with decimals
PCRE (PHP <7.3)
Hello everyone, With that regex expression, you can match the first grade with decimals on your string.
Submitted by
anonymous
-
6 years ago
0
date
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
IPv6 Reserved Blocks
PCRE (PHP <7.3)
Detects whether a given IPv6 string is within a reserved block, as defined on https://en.wikipedia.org/wiki/IPv6_address#Special_addresses Please note that this assume that the string given is already a valid IPv6 address - If IPv6 validation is important to you, please make sure you pass any strin...
Submitted by
Rohaq
-
6 years ago
0
Olsh
PCRE (PHP <7.3)
Olsh phishing
Submitted by
anonymous
-
6 years ago
0
Phishing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Split output of $(ip addr) into individual interfaces
Python
no description available
Submitted by
anonymous
-
6 years ago
0
At least one uppercase lowercase special char and numer
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Negative lookup
ECMAScript (JavaScript)
It skips the whole line if it contains searched string
Submitted by
anonymous
-
6 years ago
0
校验登录名
ECMAScript (JavaScript)
只能输入5-20个以字母开头、可带数字、“_”、“.”的字串
Submitted by
anonymous
-
6 years ago
0
校验密码:只能输入6-20个字母、数字、下划线
ECMAScript (JavaScript)
Submitted by
anonymous
-
6 years ago
0
check the URL
ECMAScript (JavaScript)
Submitted by
anonymous
-
6 years ago
0
验证邮箱
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Lawyers Description
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
FreeRadius Login-Time match
PCRE (PHP <7.3)
https://wiki.freeradius.org/config/Users#special-attributes-used-in-the-users-file
Submitted by
maxxer
-
6 years ago
0
Ignore only the IPv4 Network & Broadcast IP's
Python
Using two similar sets of /22 IP ranges (192.168.100.1/22 & 192.168.200.1/22); Select all IP's, ignoring only the Network & Broadcast IP's.
Submitted by
Jason
-
6 years ago
0
Phone Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
檢查電話號碼 - 香港 Hong Kong Phone Number Validation
PCRE (PHP <7.3)
檢查電話號碼 - 香港 Hong Kong Phone Number Validation Hong Kong Marketing Consultant Cirrhosis Medication...
Submitted by
Ellery Leung
-
6 years ago
0
Match IP address with 255.255.255.255
PCRE (PHP <7.3)
Check if IP is a valid IP. http://happinesspig.com
Submitted by
Rachel
-
6 years ago
0
Validating Visa Card Numbers
PCRE (PHP <7.3)
Validate if card number is Visa card. Update the first digit to make it Master card. http://premiumpig.com
Submitted by
Simon
-
6 years ago
0
Password is between 6 - 10 chars including letters and/or digits.
PCRE (PHP <7.3)
Password is between 6 - 10 chars including letters and/or digits. You can use maxlength in `` field to limit length http://www.cirrhosismedication.com http://www.pmsecret.com
Submitted by
anonymous
-
6 years ago
1
...
104
105
106
107
108
...
901
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(?:
[
a
-
z
\d
]
[
a
-
z
\d
_-
]
*
[
a
-
z
\d
]
)
(?:
\.
(?:
[
a
-
z
\d
]
[
a
-
z
\d
_-
]
*
[
a
-
z
\d
]
)
)*
@
(?:
\d
*
[
a
-
z
]
{2,}
\d
*
)+
\.
(?:
\d
*
[
a
-
z
]
{2,}
\d
*
)+
(?:
.
(?:
\d
*
[
a
-
z
]
{2,}
\d
*
)+
)*
$
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
7 years ago