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 3,440 community submitted regex patterns...
0
updated gettyimages link and id extractor
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Busca espacios consecutivos
ECMAScript (JavaScript)
Busca espacios consecutivos entre palabras, dos o mas espacios consecutivos.
Submitted by
anonymous
-
8 years ago
0
formula to Calculate with parameter
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Formula to Calcular sin Parametros
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Newt word in text
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Date-Time
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Regex dat URL
ECMAScript (JavaScript)
When you need to get parts of your URL nicely.
Submitted by
anonymous
-
8 years ago
0
Remove Comma, Spaces and Middle Initial
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Phone number extraction
ECMAScript (JavaScript)
I have +919535872103 adf I have +91-9535872103 adf I have +91(953)5872103 adf I have +91-(953)5872103 adf I have +91-(953) 5872103 adf I have +91 (953) 5872103 adf...
Submitted by
anonymous
-
8 years ago
0
Twitter hashtags
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Look first character that are special chracters
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Email
ECMAScript (JavaScript)
Regex to validate and get info from email string
Submitted by
anonymous
-
8 years ago
0
California Medicaid (Medi-Cal) ID Validator
ECMAScript (JavaScript)
California Medicaid (Medi-Cal) ID Validator Verifies a series of 8 Digits, 1 Char, and 5 Digits together.
Submitted by
anonymous
-
8 years ago
0
match \
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
TELÉFONO INTERNACIONAL
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
DNI español
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
CCC
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Мой рег
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Ruangan SLC 2016
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Website Address Check
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
2
3
4
...
172
Rust type-like ident casing
1
Regular Expression
Rust
r"
^
(?:
(
(?:
bool
|
char
|
str
)
|
(?:
[
fiu
]
(?:
32
|
64
)
)
|
(?:
[
iu
]
(?:
8
|
16
|
128
|
size
)
)
)
|
(
_
*
[
A
-
Z
]
[
a
-
zA
-
Z0
-
9_
]
*
)
)
$
"
xgm
Open regex in editor
Description
Matches built-in primitives and identifiers with casing conventionally used for type/constant names.
Submitted by
Neel Yadav
-
10 months ago