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,040 community submitted regex patterns...
1
Google Maps URL Coordinates
PCRE (PHP <7.3)
Find the GPS coordinates in a Google Maps' URL ex. : https://www.google.fr/maps/place/Nancy/@48.6880809,6.173437,14z/data=!3m1!4b1!4m2!3m1!1s0x4794986e17a692cd:0x4ed671b10d82498d Get these : lat : 48.6880809...
Submitted by
Cédric Anamorphik
-
10 years ago
3
javascript regex ftp directory list
ECMAScript (JavaScript)
javascript regex ftp directory list
Submitted by
anonymous
-
10 years ago
2
Country calling codes
PCRE (PHP <7.3)
Parses countries list from https://countrycode.org/
Submitted by
anonymous
-
10 years ago
1
ipv4
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
3
Div content
PCRE (PHP <7.3)
no description available
Submitted by
mohammadsaleh
-
10 years ago
1
Bug revision
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
email check
PCRE (PHP <7.3)
checks the email string for valid
Submitted by
harimambura
-
10 years ago
0
TNEW Strong Password - 8 character limit
ECMAScript (JavaScript)
restricts passwords to 8+ characters
Submitted by
anonymous
-
10 years ago
1
First 3 words in sentence
PCRE (PHP <7.3)
no description available
Submitted by
hjgabrielsen
-
10 years ago
1
Extract Lat Long from Google Maps URL
ECMAScript (JavaScript)
no description available
Submitted by
shivanraptor
-
10 years ago
0
JSON FIELD EXTRACTOR
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
-2
Expression that does not include a subexpression
PCRE (PHP <7.3)
Pattern that matches all expression that not include a subexpression. The subexpression could be replaced by a string.
Submitted by
aquintas
-
10 years ago
1
Validacija imena i prezimena
PCRE (PHP <7.3)
Sva slova Latinice od 4-20 karaktera
Submitted by
anonymous
-
10 years ago
1
Validacija broja telefona
PCRE (PHP <7.3)
Format: +3816...
Submitted by
anonymous
-
10 years ago
1
Validacija Korisnickog imena
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
Address email
ECMAScript (JavaScript)
no description available
Submitted by
JS
-
10 years ago
16
http url regex
ECMAScript (JavaScript)
general purpose HTTP URL regex
Submitted by
Miguel Castillo @manchagnu
-
10 years ago
1
ewqewq
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
0
Find and replace strings with hypens
PCRE (PHP <7.3)
Find and replace string which contains hypens "-"
Submitted by
yuks
-
10 years ago
1
Placeholder finder
PCRE (PHP <7.3)
Matches unfilled placeholders and (nested) placeholder blocks
Submitted by
Wolf Wortmann
-
10 years ago
1
...
837
838
839
840
841
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
(?:
(?:
https
?
)+
\:\/\/
+
[
a
-
zA
-
Z0
-
9
\/\.
_-
]
{1,}
)+
(?:
(?:
jpe
?
g
|
png
|
gif
|
bmp
|
webp
|
pna
|
tiff
|
svg
)
)
/
gsim
Open regex in editor
Description
Extract ALL images URLs from web page (unless domain is omitted because is local)
Submitted by
anonymous
-
2 years ago