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...
0
Match Text surrounded by 3 Tildes (~)
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Twitter search scraper
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
devkh3
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
ATF : Match alineas in Article citations
Python
no description available
Submitted by
anonymous
-
6 years ago
0
PCI BDF Adrress match
PCRE (PHP <7.3)
a regex expression to match pci BDF address like 0000:00:01.3
Submitted by
anonymous
-
6 years ago
0
ATF: Match Article number in Article citation
Python
Stripped: "Abs." to "s." "al." to "l." "und" to "nd" ...
Submitted by
anonymous
-
6 years ago
0
regex to capture URL in markdown files 2019-01-25
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Регулярное выражение для парсинга фильтра с параметром
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Relay rename
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
l10n
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Match string anywhere
Python
no description available
Submitted by
anonymous
-
6 years ago
0
[PHP] Make scalar typed parameter nullable
PCRE (PHP <7.3)
Easy to use in PHPStorm regex that make scalar typed first parameter of setters nullable
Submitted by
anonymous
-
6 years ago
0
Danish date
ECMAScript (JavaScript)
Find Danish date
Submitted by
anonymous
-
6 years ago
0
Don Hang
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
phone number pattern from 10 to 14
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
SSI Helper
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex for US Zip Code like 12345 or 12345-6789 or 123456789 and Starting 3 characters MUST NOT 0.
PCRE (PHP <7.3)
This Regex is for US Zip Code like 5 digits (12345), or like 9 digits with no spaces (123456789), or like 10 digits with a hyphen if it has the 9 numbers (12345-6789) and also Starting 3 continuous characters MUST NOT zeros(0).
Submitted by
anonymous
-
6 years ago
0
Números Processos ESAJ
PCRE (PHP <7.3)
Identificar formato do número do processo.
Submitted by
anonymous
-
6 years ago
0
Iran plate number for 6 case
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
My oleshki img
Python
no description available
Submitted by
anonymous
-
6 years ago
1
...
465
466
467
468
469
...
900
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