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
device-linux
PCRE2 (PHP >=7.3)
test
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Contas regex
Python
A simple regex for contas bancárias
Submitted by
anonymous
-
2 years ago
0
Letras, número e traço
Golang
Substitui tudo que não for letra, número e traço
Submitted by
anonymous
-
2 years ago
0
Out of
Python
Out of
Submitted by
anonymous
-
2 years ago
0
IBAN SEPA
ECMAScript (JavaScript)
This regex check for valid IBANS with SEPA only. Country definition https://www.iban.de/iban-laenderliste.html
Submitted by
Florian Bischof
-
2 years ago
1
Sri Lankan National Identity Card and Sri Lanka Identity Number validation
PCRE2 (PHP >=7.3)
Sri Lankans have two types of identifiation numbers. National Identity Card number Sri Lanka Identity Number National Identity Card number...
Submitted by
Isuru Ranawaka
-
2 years ago
1
Password - mot de passe
PCRE2 (PHP >=7.3)
1 caractère minuscule minimum 1 caractère majuscule minimum 1 chiffre minimum 1 caractère spécial minimum pas d'espace 8 caractères minimum en tout
Submitted by
Sofiane
-
2 years ago
0
a
ECMAScript (JavaScript)
不得輸入0、空值、符號、負數(僅限溫度)、小數點(僅支援後2位)
Submitted by
anonymous
-
2 years ago
0
num pattern
ECMAScript (JavaScript)
a
Submitted by
Ibraheem
-
2 years ago
0
Pan card number details
PCRE2 (PHP >=7.3)
https://regex101.com/r/eeW6Wz/2
Submitted by
anonymous
-
2 years ago
0
regexGetAccount
ECMAScript (JavaScript)
(Element CI: )\d{4}
Submitted by
raphael
-
2 years ago
0
test1
PCRE (PHP <7.3)
test1
Submitted by
anonymous
-
2 years ago
0
Email validation regex
Python
This email validation regex works perfectly (99.99%) for validating email address entries. The regex does not match email addresses with with the following characteristics: Addresses that begin/end with a special character Addresses with consecutive repeated special characters ...
Submitted by
Bright Owusu
-
2 years ago
(Last modified 2 years ago)
0
PHP quoted string constants parse
PCRE2 (PHP >=7.3)
Sometime we need to quickly parse PHP code. When no reason to use full AST parser, we can use regular expressions for find constants.
Submitted by
Slava Krampetz
-
2 years ago
0
test
PCRE2 (PHP >=7.3)
test
Submitted by
anonymous
-
2 years ago
0
Bandwidth value validation
Python
Bandwidth value validation: 1-1023K 1-1023M 1-40G
Submitted by
Damien Stuart
-
2 years ago
1
Markdown link
.NET 7.0 (C#)
Regex for parsing markdown link. Named group "text", "url" and "alt.
Submitted by
anonymous
-
2 years ago
0
Descbuilder
PCRE2 (PHP >=7.3)
Filtr indeksów monitorów wg regexp
Submitted by
HSI
-
2 years ago
0
Echo
ECMAScript (JavaScript)
Usage of named capture group.
Submitted by
Abitwhy
-
2 years ago
(Last modified 2 years ago)
0
HTML
PCRE2 (PHP >=7.3)
This regular expression can be used to verify html (by removing the anchor before pair), as well as extract elements of html (specify elements before the pair).
Submitted by
Yubo
-
2 years ago
1
...
125
126
127
128
129
...
900
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
^
(?:
0
*
)
(
\d
+
(
\.
(
25
|
5
|
75
)
)?
)
(?:
0
*
)
$
/
gm
Open regex in editor
Description
000.250 => 0.25 1.1 => 1 0.0 => 0
Submitted by
Paul Erickson
-
9 years ago