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 5,660 community submitted regex patterns...
0
Email
ECMAScript (JavaScript)
validate email address
Submitted by
anonymous
-
9 years ago
0
Match 0-100
ECMAScript (JavaScript)
http://stackoverflow.com/questions/34474298/regex-match-pattern-with-prefixed-string/34474387#34474325
Submitted by
anonymous
-
9 years ago
0
Find missing space around operators (=, +, -, *, /)
Python
no description available
Submitted by
rugk
-
9 years ago
0
IP address a.b.c.d form with range from 0 to 255 for each letters
Python
Are you pissed off with your regular expression homework? well then. here is the answer. ^([0-9]|1-9|1(0-9)|2(0-4|5[0-5]))\.([0-9]|1-9|1(0-9)|2(0-4|5[0-5]))\.([0-9]|1-9|1(0-9)|2(0-4|5[0-5]))\.([0-9]|1-9|1(0-9)|2(0-4|5[0-5]))$
Submitted by
Abdulaziz
-
9 years ago
0
dd-mmm-yyyy dd/mmm/yyyy dd.mmm.yyyy
ECMAScript (JavaScript)
it accept -, / and . operator date formate 29-Dec-2015
Submitted by
Abhijeet Joshi,
-
9 years ago
0
3-50 all
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
Date formatting
ECMAScript (JavaScript)
This catches a few formats for dates, including the year, and seperates as much as I think at the moment is possible to make it easy to manipulate the needed data points in the expression
Submitted by
Luis Perez
-
9 years ago
0
Minify css selectors
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
subdomain rewrite
ECMAScript (JavaScript)
no description available
Submitted by
mackenzie starr
-
9 years ago
0
Invoice Number
ECMAScript (JavaScript)
no description available
Submitted by
Sebastian Proske
-
9 years ago
0
Split HTML string
ECMAScript (JavaScript)
Extracts HTML tags, HTML entities, alphanumeric words, and the rest.
Submitted by
Azmizar
-
9 years ago
0
Website
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
CSV remove trailing spaces
Python
Remove trailing spaces from CSV files
Submitted by
destegabry
-
9 years ago
0
number or range
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
Words with spaces in-between
Python
Matches words (with certain special chars) and one or more spaces in between those words.
Submitted by
JAVA
-
9 years ago
0
Phone number extract
Python
Used to get the phone number from a list of phone numbers
Submitted by
jmitz
-
9 years ago
0
Find datetime directory
Python
no description available
Submitted by
anonymous
-
9 years ago
0
URL query string regex
ECMAScript (JavaScript)
no description available
Submitted by
AC
-
9 years ago
0
Filename for download request, contaions persian charachters too
ECMAScript (JavaScript)
no description available
Submitted by
Saeed.Tabrizi@gmail.com
-
9 years ago
0
Javascript SQL String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
...
111
112
113
114
115
...
283
Community Library Entry
0
Regular Expression
Python
r"
^\s
{7}
(
[
-A
]
?
\d
+
)
\s
+
(
(
.
|
\n
)*
?
)
\n^\s
{24}
(
[
A
-
Z
]
{0,2}
\d
{3}
(
\.
\d
+
)?
(
\s
(
\w
+
)
)?
)
"
gm
Open regex in editor
Description
Matches entries in a library catalogue.
Submitted by
anonymous
-
a year ago