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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 9,640 community submitted regex patterns...
0
Phone
Golang
Phone Number
Submitted by
anonymous
-
5 years ago
0
Match only numbers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
NUMERO DI TELEFONO
PCRE (PHP <7.3)
+39 E 9-15 CIFRE
Submitted by
anonymous
-
5 years ago
0
aufg5 final
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
foo
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Match numbers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Regex that does not match 0 but matches other values
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Separate pair of names
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Slick url parser
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Points fichier
PCRE (PHP <7.3)
Attrape les points dans les noms de fichiers sauf le dernier pour conserver l'extension. Ne conserve pas la double extension
Submitted by
anonymous
-
5 years ago
0
Check if url start with https
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
aufg6 final final
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Aufg1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
MM
PCRE (PHP <7.3)
ID
Submitted by
anonymous
-
5 years ago
0
Array dectection
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Fail on 2nd Dot
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
detect potential li tags from clipboard
PCRE (PHP <7.3)
this can be used to detect what could be interpreted as from the clipboard
Submitted by
anonymous
-
5 years ago
0
capture all li tags from a text
PCRE (PHP <7.3)
this can be used to capture all li items in a text and then wrap them in a ul tag.
Submitted by
anonymous
-
5 years ago
0
Second Occurrence
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Fetch background-image URL [100%]
PCRE (PHP <7.3)
The best background-image fetch in here I've not yet seen a website on which this RegEx don't work. If you do I'll be pleased to see it
Submitted by
anonymous
-
5 years ago
1
...
124
125
126
127
128
...
482
Extract Protocol, URL, URL Path, get parameters and hash from URI
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
-
10 years ago