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,040 community submitted regex patterns...
0
Regex to exclude accented character like è, à, ç... and white space
ECMAScript (JavaScript)
no description available
Submitted by
Tho Vo
-
8 years ago
(Last modified a year ago)
0
DU yellowpages search REGEX pattern
ECMAScript (JavaScript)
no description available
Submitted by
Karim Omar
-
8 years ago
0
get float in string
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Метро
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Extract date
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
get number phone
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Password formatting
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Mobile Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Train Delays
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Password Validator
ECMAScript (JavaScript)
Evaluates a string such that only letters, digits, and the special characters !, #, and $ are allowed. Length 8 - 64
Submitted by
atypicaldev
-
8 years ago
0
Parse AssemblyVersion
PCRE (PHP <7.3)
Expression parses AssemblyVersion with following composition structure ... into 3 groups 'version' - . 'patch' - 'build' -
Submitted by
Headspin
-
8 years ago
0
3 or more single digit consecutive numbers
ECMAScript (JavaScript)
To check whether the given String contains 3 or more consecutive single digit numbers
Submitted by
Pradeep Patil
-
8 years ago
0
zoek stuks ook in frans :
PCRE (PHP <7.3)
selectie moet eigenlijk alleen de spatie zijn ; lukt nog niet
Submitted by
anonymous
-
8 years ago
0
zoek x of X in headline om altijd in onderkast te krijgen
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Search uc or lc 'x' as a single chr in a sentence
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Extract time values from string (Dutch)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Obter o título de um link e o seu texto
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Obter o título de um link e seu texto
PCRE (PHP <7.3)
Use esta expressão par selecionar todos os links em um texto que contenham o atributo title definido. Possui dois grupos, um que retorna o título e outro que retorna o texto contido entre e
Submitted by
Carlos Barreto Feitoza Filho
-
8 years ago
0
FindValueBetweenQuotes
PCRE (PHP <7.3)
no description available
Submitted by
MAR
-
8 years ago
1
...
393
394
395
396
397
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
(
.
)
(?:
(?:
0
(?=
1
|
\b
)
|
1
(?=
2
|
\b
)
|
2
(?=
3
|
\b
)
|
3
(?=
4
|
\b
)
|
4
(?=
5
|
\b
)
|
5
(?=
6
|
\b
)
|
6
(?=
7
|
\b
)
|
7
(?=
8
|
\b
)
|
8
(?=
9
|
\b
)
|
9
(?=
0
|
\b
)
){3,}
)
/
g
Open regex in editor
Description
To check whether the given String contains 3 or more consecutive single digit numbers
Submitted by
Pradeep Patil
-
8 years ago