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...
2
Apache2 Access Log parsing
PCRE (PHP <7.3)
This breaks down an Apache2 access log into 9 parts. I use this for analyzing content in my webserver logs.
Submitted by
Kevin Loverde
-
9 years ago
2
Email Domain Regex
PCRE (PHP <7.3)
A pattern to match the email domain suffix
Submitted by
doug
-
9 years ago
2
find numbers with 2 commas
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
IP with Subnet
PCRE (PHP <7.3)
IP address with Subnet
Submitted by
Matt Masse
-
9 years ago
2
Date between 1950 and 2050
ECMAScript (JavaScript)
Date in format MM-dd-yyyy
Submitted by
Daniel Quijada
-
9 years ago
2
SED
Python
no description available
Submitted by
anonymous
-
9 years ago
2
notepad++
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
replace any character with more than two occurrence
ECMAScript (JavaScript)
no description available
Submitted by
papky
-
9 years ago
2
Date search
PCRE (PHP <7.3)
Search for three different types of dates in spanish format
Submitted by
Agustín Bouillet
-
9 years ago
2
Search src from <img> tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
HTML comments
PCRE (PHP <7.3)
Groups HTML comments that are between .
Submitted by
Greaka
-
9 years ago
2
word before :
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
2
Case-sensitive keyword matching.
PCRE (PHP <7.3)
Case-sensitive matching of a keyword, where the keyword is not a substring of other words.
Submitted by
Norskov
-
9 years ago
2
BRAZILIAN VEHICLE PLATE
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
fffs
ECMAScript (JavaScript)
dfsfd
Submitted by
anonymous
-
9 years ago
2
US datetime
ECMAScript (JavaScript)
Validates a US mm-dd-yy(yy) with an optional hh:mm:ss time.
Submitted by
anonymous
-
9 years ago
2
desanonimyse
PCRE (PHP <7.3)
no description available
Submitted by
JB Escudié
-
9 years ago
2
match those lines whose first n chars contains 1+ non numeric
Python
1100582367|SDFDSFDSFDSFDSFDF GBC213WREW|RWEFSDFSDF 1100582377|DSFDSFDSFDSF 2NDG.S.D BIKADSFDSFDSFNO.421 1100582387|SDFSDFSDFDSF
Submitted by
sid
-
9 years ago
2
Alphanumeric only
PCRE (PHP <7.3)
Allows only Uppercase, lowercase letters and numbers
Submitted by
anonymous
-
9 years ago
2
Port validator
Python
Validates port numbers from 1 to 65535
Submitted by
Agustín Bouillet
-
9 years ago
1
...
858
859
860
861
862
...
901
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
[
a
-
zA
-
Z0
-
9._-
]
{1,99}
(
@
)
[
a
-
zA
-
Z0
-
9
]
{1,99}
(
.
)
[
a
-
zA
-
Z
]
{1,3}
/
gm
Open regex in editor
Description
Email
Submitted by
anonymous
-
2 years ago