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 11,720 community submitted regex patterns...
0
ARVE vimeo
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Month (Alpha) and Day
Python
Three letter or full text month name (including Sept for September) with or without upper case first letter for month followed by one or two digit day with no intervening white space. examples: Jan10 february29 Sept15 ...
Submitted by
anonymous
-
6 years ago
0
Check that a string does not end with the substrings: ".js" or ".css"
PCRE (PHP <7.3)
Can be applied to other scenarii as well
Submitted by
anonymous
-
6 years ago
0
Una letra, de 1 a 5 números
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
NUEVO
Python
no description available
Submitted by
anonymous
-
6 years ago
0
cinecalidad
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Bearing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Capture any number up to decimal and two digits after decimal if they exist
PCRE (PHP <7.3)
Wrote without research on existing solutions, so test before using in production.
Submitted by
anonymous
-
6 years ago
0
Url match
Python
no description available
Submitted by
anonymous
-
6 years ago
0
To select lines that do not start with a substring.
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
phones_celleb
Python
no description available
Submitted by
anonymous
-
6 years ago
0
test_epoc
Python
no description available
Submitted by
anonymous
-
6 years ago
0
socket_parse
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
comment finder
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
TODO
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
My lib
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
My oleshki img
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Iran plate number for 6 case
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Números Processos ESAJ
PCRE (PHP <7.3)
Identificar formato do número do processo.
Submitted by
anonymous
-
6 years ago
0
Regex for US Zip Code like 12345 or 12345-6789 or 123456789 and Starting 3 characters MUST NOT 0.
PCRE (PHP <7.3)
This Regex is for US Zip Code like 5 digits (12345), or like 9 digits with no spaces (123456789), or like 10 digits with a hyphen if it has the 9 numbers (12345-6789) and also Starting 3 continuous characters MUST NOT zeros(0).
Submitted by
anonymous
-
6 years ago
1
...
124
125
126
127
128
...
586
Community Library Entry
5
Regular Expression
Python
r"
^.
*
(?=
.
{8,32}
)
(?=
.
*
\d
)
(?=
.
*
[
a
-
z
]
)
(?=
.
*
[
A
-
Z
]
)
(?=
.
*
[
!?@#$%^&*()
\-
+|=}{/:;
"
,'
\]\[
_
\~
<>€£¥•
\\
]
)
.
*
$
"
g
Open regex in editor
Description
no description available
Submitted by
anonymous
-
9 years ago