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
prevent repetition of similar string
PCRE (PHP <7.3)
this regex won't let two characters to be similar. eg. AA, AAA, AAAA this regex matches all string characters including numbers and except line breaks. It prevents input of string similar to the following pattern: 11 222 3333 4444...
Submitted by
anonymous
-
5 years ago
0
vin
ECMAScript (JavaScript)
Vehicle Identification Number (VIN). The check digit (9th digit) is not checked for accuracy.
Submitted by
anonymous
-
5 years ago
0
Extract Build Times
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Android Logcat - Filter out lines containing word(s)
PCRE (PHP <7.3)
Matches only lines that do not contain any of the provided strings. Useful to suppress noisy/uninteresting stuff from logcat. Looking at you ViewRootImpl
Submitted by
anonymous
-
5 years ago
0
Alonso Honda PDO
ECMAScript (JavaScript)
Alonso PDO Honda
Submitted by
anonymous
-
5 years ago
0
Niklaas
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Lifetrek po dnevih
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Europe - Estonia - - Passport Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
TV Show Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Europe - France - - Passport Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Europe - Germany - - Passport Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Europe - Hungary - - Passport Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Europe - Italy - - Passport Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Europe - Poland - - Passport Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Europe - Portugal - - Passport Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Do not match url ending With
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Ruby needs replacing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
lookaheads example
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Select Vue.Component definition until close
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Check is an equal exist and extract the value
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
384
385
386
387
388
...
902
Community Library Entry
0
Regular Expression
Python
r"
^
map
\s
*
\$
\w
+
\s
*
\$
\w
+
\s
*
{
\n
*
\s
*
(
[
a
-
z,.
]
+
)
\s
*
(
[
a
-
z,_
]
+
)
;
\s
*
"
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
4 years ago