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...
2
Date search
PCRE (PHP <7.3)
Search for three different types of dates in spanish format
Submitted by
Agustín Bouillet
-
9 years ago
1
Find all JS objects with the name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
13fd
PCRE (PHP <7.3)
no description available
Submitted by
jay
-
9 years ago
1
url regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
3
Match text in square brackets
PCRE (PHP <7.3)
Drupal7 Media Element in node body - A regex to match the media module square bracketted token/element for embedde images in node body. Use case - using the body text trimmed in a meta description - need to remove the media element as well as strip tags.
Submitted by
iAugur
-
9 years ago
2
76
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
adad
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
po box
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
OSI Key
PCRE (PHP <7.3)
no description available
Submitted by
Mike LeBlanc
-
9 years ago
1
REGEX for FTs
PCRE (PHP <7.3)
Regular Expressions for functional test name
Submitted by
anonymous
-
9 years ago
1
c
ECMAScript (JavaScript)
no description available
Submitted by
s
-
9 years ago
1
VSO remove special symbols
ECMAScript (JavaScript)
no description available
Submitted by
Jon Henning Bergane
-
9 years ago
1
Übung
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
^[a-zA-Z_\-]+$
PCRE (PHP <7.3)
Check no space
Submitted by
anonymous
-
9 years ago
1
DE PLZ/ZIP + Location
PCRE (PHP <7.3)
no description available
Submitted by
elementcode
-
9 years ago
-1
Australian local and international mobile validation
ECMAScript (JavaScript)
no description available
Submitted by
Damien Capocchi
-
9 years ago
1
nxtgn title grabber
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
nxtgn torrents
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
nxtgn categories
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
re
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
...
522
523
524
525
526
...
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