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
Lấy một chuỗi nhưng không chứa 1 chuỗi con đặc biệt nào đó
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Lấy một chuỗi nhưng không chứa 1 ký tự đặc biệt nào đó
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Cách bắt lấy chuỗi bất kỳ
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Curly Brackets
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Nginx log pattern message extracter
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Characters inspringen
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
asciidoctor header id
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Az explorer command
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
email v2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Replacetext widget isset
PCRE (PHP <7.3)
Voegt een if statement toe aan alle widget parameters die worden aangeroepen om te kijken of ze al gedefinieerd zijn.
Submitted by
anonymous
-
5 years ago
0
Replacetext widget isset
PCRE (PHP <7.3)
Voegt een if statement toe aan alle widget parameters die worden aangeroepen om te kijken of ze al gedefinieerd zijn.
Submitted by
anonymous
-
5 years ago
0
Cách "tóm lấy" string cần tìm đưa vào Group
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Not contaning subdomain and substring
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Lookahead and lookbehind
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Chilean phone number (mobile)
Python
phone number with country cod. +56 (chile)
Submitted by
anonymous
-
5 years ago
0
Busca nome função
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Extract Abaqus file/ Nastran file node number and mapped temperature or pressure value
Python
Process: Temperature/ pressure data generated by CFD software StarCCM+ Temperature/ pressure data extracted during runtime by StarCCM+ in form of *.csv files Data extracted every x timesteps (x = integer value >= 1) Data mapping performed using "tabular data mapper" tool in StarCCM+. Algorithm used...
Submitted by
anonymous
-
5 years ago
0
Extract value of time from *.csv file name
Python
Works for both positive and negative exponent Works for both lowercase exponent (e) and uppercase exponent (E)
Submitted by
anonymous
-
5 years ago
0
email - javascript
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Simple Medicaid HICN
PCRE (PHP <7.3)
Here's a PHP PCRE regexp that has room for improvement but works for me...
Submitted by
anonymous
-
5 years ago
1
...
425
426
427
428
429
...
900
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
^
(
(?=
.
*
[
a
-
z
]
)
(?=
.
*
[
A
-
Z
]
)
(?=
.
*
[
\d
]
)
(?=
.
*
[
@#%$£&*
]
)
\S
{8,50}
)
$
/
gm
Open regex in editor
Description
Vérifie si le mot de passe contient
Entre 8 - 50 caractères
1 majuscule
1 minuscule
1 symbole
Submitted by
anonymous
-
3 years ago