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
GEDCOM match level 1 XXXX tags and all subtags
PCRE2 (PHP >=7.3)
This will match level 2 OBJE tags and all subtags: \n2 OBJE.(\n[3-9].)* This will match level 3 OBJE tags and all subtags: \n3 OBJE.(\n[4-9].)* Source: https://www.webtrees.net/index.php/en/forum/help-for-release-2-1-x/37650-import-gedcom-without-obje#97068
Submitted by
anonymous
-
2 years ago
0
Extracting subtitle entries
PCRE (PHP <7.3)
Extract subtitle entries out of SRT files.
Submitted by
anonymous
-
2 years ago
0
(\d+(\.\d)?\,\d+(\.\d)?\|){0,2}(\d+(\.\d)?,\d+(\.\d)?)
ECMAScript (JavaScript)
(\d+(\.\d)?\,\d+(\.\d)?\|){0,2}(\d+(\.\d)?,\d+(\.\d)?)
Submitted by
anonymous
-
2 years ago
0
placeables
ECMAScript (JavaScript)
placeables
Submitted by
anonymous
-
2 years ago
0
https://github.com/AriesTriputranto9/datasets.git
PCRE (PHP <7.3)
actions-runner-win-x64-2.300.2.zipDownload We recommend configuring the runner under "\actions-runner". This will help avoid issues related to service identity folder permissions and long path restrictions on Windows. Create a folder under the drive root $ mkdir actions-runner; cd actions-runner# D...
Submitted by
AriesTriputranto
-
2 years ago
0
Password validation
ECMAScript (JavaScript)
Regex used for password validation. A password match the following: At least 8 characters in length Minimum of 1 lower-case character Minimum of 1 upper-case character Minimum of 1 digit Minimum of 1 special character (non-whitespace)
Submitted by
Sjoerd de Vries
-
2 years ago
0
Mail address validation
ECMAScript (JavaScript)
Validates mail addresses
Submitted by
Sjoerd de Vries
-
2 years ago
0
Discord Invite Regexp
PCRE2 (PHP >=7.3)
a
Submitted by
MinerPL
-
2 years ago
0
Get h1-6 tag
.NET 7.0 (C#)
(.*?)
Submitted by
OlegBel
-
2 years ago
0
Simple digit removal
PCRE2 (PHP >=7.3)
A simple expression for removing digits from the suffix of a string.
Submitted by
Seth F.
-
2 years ago
0
[NOT WORKING] css/scss filenames but not css-modules (*.module.<extension>)
ECMAScript (JavaScript)
Get file paths .css or .scss but not .module.css or .module.scss
Submitted by
krutoo
-
2 years ago
0
Kumpulan regex
PCRE2 (PHP >=7.3)
simpenan
Submitted by
anonymous
-
2 years ago
0
Regex Kanwil
PCRE2 (PHP >=7.3)
Ambil $1 buat nampilin nama Kanwil only
Submitted by
anonymous
-
2 years ago
0
Area Only
PCRE2 (PHP >=7.3)
Regex for took area name only
Submitted by
anonymous
-
2 years ago
0
Branch kanwil
PCRE2 (PHP >=7.3)
regex for took branch name with sub name
Submitted by
anonymous
-
2 years ago
0
sub regex
PCRE2 (PHP >=7.3)
regex for took sub name with branch name
Submitted by
anonymous
-
2 years ago
0
Tel
ECMAScript (JavaScript)
Válida números de telefone
Submitted by
Mateus
-
2 years ago
0
RegExp para validar senhas fortes
PCRE2 (PHP >=7.3)
Especificações: -As senhas devem conter de 6 a 15 caracteres -Devem conter pelo menos 1 letra maiúscula -Devem conter pelo menos 1 caractere especial -Devem conter pelo menos 1 número
Submitted by
Dev_Falido
-
2 years ago
0
Percentage only
ECMAScript (JavaScript)
Percentage only
Submitted by
cagatayucar
-
2 years ago
0
US|CA dollar
ECMAScript (JavaScript)
US|CA dollar regexp
Submitted by
cagatayucar
-
2 years ago
1
...
865
866
867
868
869
...
900
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
\b
(
\d
{1,2}
|
1
\d
{2}
|
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
)
\b
\.
\b
(
\d
{1,2}
|
1
\d
{2}
|
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
)
\b
\.
\b
(
\d
{1,2}
|
1
\d
{2}
|
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
)
\b
\.
\b
(
\d
{1,2}
|
1
\d
{2}
|
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
)
\b
"
gm
Open regex in editor
Description
expression to capture valid IP
Submitted by
anonymous
-
2 years ago