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 11,320 community submitted regex patterns...
0
regex search by element tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Parse alternative allele in VCF 4.1
PCRE (PHP <7.3)
Parse the ALT field (alternative allele) in VCF 4.1 format
Submitted by
panagiotis moulos
-
6 years ago
0
Parse alternative allele in VCF 4.2
PCRE (PHP <7.3)
Parse ALT field (alternative allele) in VCF 4.2 format
Submitted by
panagiotis moulos
-
6 years ago
0
Parse alternative allele in VCF 4.3
PCRE (PHP <7.3)
Parse ALT field (alternative allele) in VCF 4.3
Submitted by
panagiotis moulos
-
6 years ago
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
-
7 years ago
0
date
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 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
-
7 years ago
0
Olsh
PCRE (PHP <7.3)
Olsh phishing
Submitted by
anonymous
-
7 years ago
0
Phishing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Split output of $(ip addr) into individual interfaces
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Lawyers Description
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 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
-
7 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
-
7 years ago
0
Phone Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 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
-
7 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
-
7 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
-
7 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
-
7 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
Ellery
-
7 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
Ellery
-
7 years ago
1
...
123
124
125
126
127
...
566
Community Library Entry
0
Regular Expression
Python
r"
(?P<nom>
^
[
\w\d
]
?
)
\/
(?P<latfield>
(?P<latflag>
[
NS
]
)
(?P<latval>
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
)
\/
(?P<lonfield>
(?P<lonflag>
[
EW
]
)
(?P<lonval>
[
01
]
?
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
$
)
"
s
Open regex in editor
Description
Text fields describing a name and positions
Submitted by
bruno.piguet@meteo.fr
-
11 years ago