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,000 community submitted regex patterns...
1
matching url parts
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Domain RegExp
PCRE (PHP <7.3)
Test the URL or domain
Submitted by
maxm krupkin
-
8 years ago
1
avreg
PCRE (PHP <7.3)
no description available
Submitted by
2xe.ru
-
8 years ago
1
Starts and Ends with 3 digits
ECMAScript (JavaScript)
String begins with 3 digits + whitespace character + any length of characters + white space + 3 digits
Submitted by
anonymous
-
8 years ago
1
Phone
PCRE (PHP <7.3)
Start with 0 - 10 number
Submitted by
alinquant lonny
-
8 years ago
1
Mail
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Password
PCRE (PHP <7.3)
1 letter - 1 number - 1 special character
Submitted by
anonymous
-
8 years ago
1
maps.google lat and lng
PCRE (PHP <7.3)
q=27.622063,-80.388802 https://maps.google.com/maps?q=27.622063,-80.388802&hl=es&z=12&output=embed https://maps.google.com/maps?q=33.5805955,-112.23737790000001&hl=es&z=12&output=embed ...
Submitted by
Ellen Higashi
-
8 years ago
1
Replace Spaces in href and src attributes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
splay
Python
splay js_data
Submitted by
anonymous
-
8 years ago
1
Phone number dutch
PCRE (PHP <7.3)
Mobile, home and international. Including the regional prefix numbers
Submitted by
Manoe Driessen
-
8 years ago
1
Postcode
PCRE (PHP <7.3)
Postcode hoofdletter ongevoelig. Inclusief eventuele spatie.
Submitted by
Manoe Driessen
-
8 years ago
1
decoupe_gid
PCRE (PHP <7.3)
decoupe un gid
Submitted by
anonymous
-
8 years ago
1
port match
Python
no description available
Submitted by
anonymous
-
8 years ago
1
subst space with underscore
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
prvs email thingy
PCRE (PHP <7.3)
email thingy
Submitted by
anonymous
-
8 years ago
1
url regex
PCRE (PHP <7.3)
url regex for http(s) and redirects
Submitted by
anonymous
-
8 years ago
1
MM/DD/YYYY
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
querystring
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
...
210
211
212
213
214
...
900
Community Library Entry
0
Regular Expression
Golang
`
(
\d
+
)
\.
(
\d
+
)
\.
(
\d
+
)
`
gm
Open regex in editor
Description
"1.2.3"
Group 1: 1
Group 2: 2
Group 3: 3
Submitted by
Icaruk
-
2 years ago