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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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,740 community submitted regex patterns...
0
Semantic versioning
PCRE (PHP <7.3)
For semantic version validation / parsing.
Submitted by
Daniel R. Azulay <d.r.azulay@gmail.com>
-
6 years ago
0
to pick the last value oid
PCRE (PHP <7.3)
it picks 25 in 1.3.6.1.4.5.25
Submitted by
anonymous
-
6 years ago
0
Check VAT ID
PCRE (PHP <7.3)
Based on information provided by European Commission (source: http://ec.europa.eu/taxation_customs/vies/technicalInformation.html) "The European Commission cannot divulge these algorithms. However, the structure of VAT identification numbers is given and used here for the testing of the validations"...
Submitted by
calvomat
-
6 years ago
0
IFS Code Regex for India
PCRE (PHP <7.3)
no description available
Submitted by
Gian Patrick Quintana
-
6 years ago
0
Consolidation Announcement Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Semver matching regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
codescrew (not including strings)
Python
no description available
Submitted by
anonymous
-
6 years ago
0
regex search by element tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 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
-
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
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
1
...
125
126
127
128
129
...
587
EmailValidation
0
Regular Expression
PCRE2 (PHP >=7.3)
/
[
A
-
Za
-
z._
]
{3,}
@
[
A_Za
-
z
]
{3,10}
[
.
]
{1}
[
A
-
Za
-
z.
]
{2,6}
/
gm
Open regex in editor
Description
This is an Email validation using RegExp.
Submitted by
anonymous
-
a year ago