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 12,760 community submitted regex patterns...
0
CD45 Devis (creation)
PCRE (PHP <7.3)
ajout filtre Devis
Submitted by
anonymous
-
5 years ago
0
CD45 Devis (Keepparam)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Comma Separated Longitude Latitude Pair Validator
PCRE (PHP <7.3)
Validates whether a list of long/lat coordinate pairs are valid. Requires at least 3 pairs, and requires comma at the end of the final pair. Each single coordinate is separated by a space, and all coordinate pairs must be separated by a comma
Submitted by
anonymous
-
5 years ago
0
Ip
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Ip
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
VBA Function Parse
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
something - anything - something
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Brackets Recurse
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
VBA String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
KalliopePBX v4 X-authenticate header validator
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
CACI Get Prompt Info
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
CACI Delete Prompt Response
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
hl-skifox
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
teszt
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
jelszó
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
images_extension
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Catch full string up until last backslash
PCRE (PHP <7.3)
Anything before the final \ will be detected. In the example below, the files will be stripped from the file-path as the regex will detect anything in the filepath up until the final backslash. setup In the root of your project you save the script below in index.php and should create folder named a...
Submitted by
anonymous
-
5 years ago
0
<a> tag search
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
LLR_get_invoice_details
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Nginx subdomain wild card
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
465
466
467
468
469
...
638
Community Library Entry
40
Regular Expression
PCRE (PHP <7.3)
/
(
(
(
[
A
-
Za
-
z
]
{3,9}
:
(?:
\/\/
)?
)
(?:
[
-;:&=
\+\$
,
\w
]
+
@
)?
[
A
-
Za
-
z0
-
9.-
]
+
|
(?:
www
.
|
[
-;:&=
\+\$
,
\w
]
+
@
)
[
A
-
Za
-
z0
-
9.-
]
+
)
(
(?:
\/
[
\+
~%
\/
.
\w
-_
]
*
)?
\?
?
(?:
[
-
\+
=&;%@.
\w
_
]
*
)
#
?
(?:
[
.
\!\/\\
w
]
*
)
)?
)
/
ig
Open regex in editor
Description
A quite neat regular expression for URLs, e-mails..., I found on Matthew O'Riordan's blog.
Submitted by
Matthew O'Riordan
-
12 years ago