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 3,660 community submitted regex patterns...
0
Find a word (Case-Insensitive)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Date Validation - Including Leap Year (mm/dd/yyyy)
ECMAScript (JavaScript)
This regex validates all dates between 01/01/1900 and 12/31/2099, including leap-year validation. It follows a mm/dd/yyyy format, and enforces two-digit month/year formats.
Submitted by
anonymous
-
5 years ago
0
String after $
ECMAScript (JavaScript)
Selects the string after the $ sign
Submitted by
anonymous
-
5 years ago
(Last modified 3 years ago)
0
Get document.cookie value by name
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
riley 1
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
riley 2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
riley 3
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
VBA Comment
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
enhanced path pattern 2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
json regex masterpiece
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
BEM
ECMAScript (JavaScript)
A variety of BEM flavoured regex.
Submitted by
anonymous
-
5 years ago
0
path pattern with 10 versions
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
transform regex
Golang
vault sync
Submitted by
anonymous
-
5 years ago
0
ip4校验
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
REGEX - Find 10 digits, starting with '9'. Can contain white-spaces, but these should be ignored.
ECMAScript (JavaScript)
An invoice number always has 10 digits, starting with a '9' (e.g. '9400065741'). But a number should also be found if it contains white-spaces. These numbers should also be found: '9400065741' ' 94 00065741'...
Submitted by
anonymous
-
5 years ago
0
postcode both lower & upper case
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
positivehead_dollar
ECMAScript (JavaScript)
(?=\w{5,})(?=\D*\d{2}$)
Submitted by
anonymous
-
5 years ago
0
中文英文匹配规则
ECMAScript (JavaScript)
中文英文匹配规则
Submitted by
anonymous
-
5 years ago
0
Image Charts - chm
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Find //Character entries
ECMAScript (JavaScript)
^(\/\/)(?![\ ])(\w)*
Submitted by
anonymous
-
5 years ago
1
...
124
125
126
127
128
...
183
Community Library Entry
8
Regular Expression
Python
r"
^
(
http
[
s
]
?
:
)+
\/\/
(
[^
:
\/
\s
]
+
)
(
[^
#?
\s
]
+
)
\?
(
[^
#
]
*
)?
(
#
.
*
)?
$
"
i
Open regex in editor
Description
This is simplified from my last submission.
Submitted by
Dale O'Brien
-
11 years ago