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,000 community submitted regex patterns...
0
Remove \r\n & \"
PCRE (PHP <7.3)
JSON object string \r\n & \" replace regex
Submitted by
Jerad Rutnam
-
9 years ago
6
Validate Birth Date (d/m/Y)
PCRE (PHP <7.3)
From 1970 to 2015 Replace: (\d{4})$ for (19[7-9]\d|200-1)$
Submitted by
Valdeir Santana
-
9 years ago
10
entity
Python
no description available
Submitted by
anonymous
-
9 years ago
1
Strong Password
PCRE (PHP <7.3)
1 digit 1 lower case 1 upper case 1 special character (no-space) 8-20 length
Submitted by
Femi Fapohunda
-
9 years ago
0
CEP
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Excluir string en nombre de imagen
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
ghs LS Summary extractor
Python
no description available
Submitted by
anonymous
-
9 years ago
1
SN Matcher
PCRE (PHP <7.3)
^([A-E])([A-C])([0-2])(\d)([0-5])(\d)([B])(\d{6})([A-Z0-9]{2})(\d{3})$
Submitted by
anonymous
-
9 years ago
-3
retrieve hostname without subdomain
PCRE (PHP <7.3)
no description available
Submitted by
Diego Zuluaga
-
9 years ago
0
Finding SEI File Date in File Name
Python
For flags data
Submitted by
Andrew Chalk
-
9 years ago
1
nathan
PCRE (PHP <7.3)
no description available
Submitted by
nathan
-
9 years ago
2
Fecha ISO
ECMAScript (JavaScript)
Comprueba si una fecha está en formato ISO: aaaa/mm/dd. Obtiene 3 datos: 1=año; 2=mes; 3=dia, para su cambio al formato español dd/mm/aaaa. Detecta si el mes y el día pueden existir (no incluye mes febrero ni bisiestos)
Submitted by
Alfonso
-
9 years ago
10
money: either 0 or 2 dp
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Tel
PCRE (PHP <7.3)
Simple tel regex
Submitted by
anonymous
-
9 years ago
1
Desc
PCRE (PHP <7.3)
match /* @Desc("(.)");
Submitted by
anonymous
-
9 years ago
0
Delphi - FieldName GrepSearch Filter
ECMAScript (JavaScript)
Filtro para utilização no GrepSearch do Delphi para encontrar Dataset.FieldName
Submitted by
Moisés Porto Rodrigues
-
9 years ago
1
02
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Trim to newline
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
a
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Pokemon move splitter
PCRE (PHP <7.3)
For splitting up moves from breeding.
Submitted by
anonymous
-
9 years ago
1
...
772
773
774
775
776
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
^
(
[
A
-
E
]
)
(
[
A
-
C
]
)
(
[
0
-
2
]
)
(
\d
)
(
[
0
-
5
]
)
(
\d
)
(
[
B
]
)
(
\d
{6}
)
(
[
A
-
Z0
-
9
]
{2}
)
(
\d
{3}
)
$
/
Open regex in editor
Description
^([A-E])([A-C])([0-2])(\d)([0-5])(\d)([B])(\d{6})([A-Z0-9]{2})(\d{3})$
Submitted by
anonymous
-
9 years ago