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,840 community submitted regex patterns...
0
At least 8 chars, at least a Mayus or special char & at least a number
ECMAScript (JavaScript)
no description available
Submitted by
Luis Arias :D
-
9 years ago
0
Check That User Has Input Valid YYYY
ECMAScript (JavaScript)
This simple regex checks if a user has input correct YYYY format.
Submitted by
@izotope115
-
9 years ago
0
Validates Against YYYY
ECMAScript (JavaScript)
This regex checks if a user has input 4 digit year integer.
Submitted by
@izotope115
-
9 years ago
0
ContentPlace Xml Tag
ECMAScript (JavaScript)
ContentPlace Xml Tag
Submitted by
Saeed Tabrizi
-
9 years ago
0
Regex Fecha yyyy-MM-dd
ECMAScript (JavaScript)
valida fechas de 19## a 20##, en formato yyyy-MM-dd
Submitted by
http://www.regular-expressions.info/dates.html
-
9 years ago
0
Payment process
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
get lowercase letters
ECMAScript (JavaScript)
get lowercase letters
Submitted by
jho
-
9 years ago
0
Workspaces
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
Workspace case insensitive
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
Website url maxLength 50
ECMAScript (JavaScript)
no description available
Submitted by
Josiah
-
9 years ago
0
Match special characters excl. unicode accented, _, -, and whitespace
ECMAScript (JavaScript)
Covers Latin-1 Supplement Latin Extended-A Latin Extended-B Greek and Coptic
Submitted by
anonymous
-
9 years ago
0
number
ECMAScript (JavaScript)
This is for the validation of number
Submitted by
Noby nirmal
-
9 years ago
0
JSON (In progress)
ECMAScript (JavaScript)
Regex to qoute a JSON-string
Submitted by
Lars Willighagen
-
9 years ago
0
Quote JSON keys
ECMAScript (JavaScript)
Regex to quote keys to parse a string of relaxed JSON. Rules: No ':', '"' or newline in keys allowed
Submitted by
Lars Willighagen
-
9 years ago
0
zepit multiline
ECMAScript (JavaScript)
no description available
Submitted by
antoine
-
9 years ago
0
Date expression
ECMAScript (JavaScript)
yyyy-mm-dd
Submitted by
Alan
-
9 years ago
0
Strip the Headers from a response where JSON is present
ECMAScript (JavaScript)
HTTP/1.0 404 Not Found Cache-Control: no-cache Content-Type: application/json {"validation_message":'...'} ...
Submitted by
John B.
-
8 years ago
0
Firstname Lastname(double)
ECMAScript (JavaScript)
Example: ANDA IVANOVA-KRIVONOGOVA
Submitted by
KSrGEAR
-
8 years ago
0
DD-MM-YYYY
ECMAScript (JavaScript)
Any date that as a valid month, a valid date and a year composed of 4 numbers. You can change the '-' caracter to any divider you want.
Submitted by
anonymous
-
8 years ago
0
Set in String
ECMAScript (JavaScript)
no description available
Submitted by
Mohammad
-
8 years ago
1
...
112
113
114
115
116
...
192
Community Library Entry
10
Regular Expression
Python
r"
(
^
https
?
://
)?
(
\w
+
)?
\.
?
(
reddit
\.
com/
|
redd
\.
it/
)
(
r/
\w
+
/
)?
(
comments/
)?
(
\w
+
)
"
gm
Open regex in editor
Description
Simply searches for the thread-id in any kind of valid reddit-URL.
Submitted by
Mio
-
10 years ago