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
Empty DIV Container
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Scintilla - Verkettung von Symbolen, namespaces, Types, Properties, Methoden
PCRE (PHP <7.3)
Scintilla nimmt Klammern () als nicht ein Teil eines Wortes
Submitted by
anonymous
-
4 years ago
0
Liste AUtocad Supprimer inutile
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Username (freecodecamp)
ECMAScript (JavaScript)
1) Usernames can only use alpha-numeric characters. 2) The only numbers in the username have to be at the end. There can be zero or more of them at the end. Username cannot start with the number. 3) Username letters can be lowercase and uppercase. ...
Submitted by
Mathivanan
-
4 years ago
0
French Plate Number
Python
https://fr.wikipedia.org/wiki/Plaque_d'immatriculation_fran%C3%A7aise#Num%C3%A9rotation AA001AA Note : I, O and U are forbidden (too close to 1, 0 and V). 3 digits number ranges from 001 to 999.
Submitted by
anonymous
-
4 years ago
0
later
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
ESCLUDI VALORI IN BLOCCO LOG
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Custom siav
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
date
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Find Application URLs
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
REGEX PARAM Entretoise Kloos
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
STJ_IMM_001_20200909_Moradas1a.txt
PCRE (PHP <7.3)
Este corpus consta de 8386 caracteres y corresponde a la primera mitad del primer capítulo de las Moradas primeras de la mística Santa Teresa de Jesús.
Submitted by
anonymous
-
4 years ago
0
STJ_IMM_002_20200909_Moradas1b.txt
PCRE (PHP <7.3)
Este corpus consiste en 3777 caracteres de la segunda mitad del primer capítulo de las primeras moradas de Santa Teresa de Jesús.
Submitted by
anonymous
-
4 years ago
0
Stopwords 2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Stopwords
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
FORMA MÁS EFECTIVA PARA SELECCIONAR SIGNOS DE PUNTUACIÓN
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Cuting Email
PCRE (PHP <7.3)
This little regex is taking an email and creating 2 group first is for before the @ sign and the second is for after the @ sign
Submitted by
anonymous
-
4 years ago
0
Signos de puntuación de "El rayo de Luna"
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
A UNC path or a local drive path
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Time, Distance, Pace, SPM, HR
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
288
289
290
291
292
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(
0
[
1
-
9
]
|
1
[
0
-
2
]
)
[
\/\-
]
(
0
[
1
-
9
]
|
1
[
\d
]
|
2
[
\d
]
|
3
[
01
]
)
[
\/\-
]
(
\d
{2,4}
)
/
gm
Open regex in editor
Description
FInds a valid date string in the formats mm-dd-yy or mm/dd/yy, as well as mm-dd-yyyy and mm/dd/yyyy.
Submitted by
anonymous
-
5 years ago