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 11,620 community submitted regex patterns...
1
orphaned
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Match URLS http|https www|ww|www3 etc
PCRE (PHP <7.3)
match various web urls
Submitted by
ganey
-
9 years ago
1
Code INSEE des départements français
PCRE (PHP <7.3)
Cette expression régulière valide une chaîne de caractères représentant un code département selon le code INSEE. Voir http://www.insee.fr/fr/methodes/nomenclatures/cog/
Submitted by
anonymous
-
9 years ago
1
Dashie Save
PCRE (PHP <7.3)
TS3 REGEX NAME BLACKLIST
Submitted by
Dashie @inetpwnz
-
9 years ago
1
Extract Course Number from Member DataBase Area
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
MarketdataQuoteHandlerMessages
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
qeqe
PCRE (PHP <7.3)
qweqwe
Submitted by
qweqe
-
9 years ago
1
email regex
Python
no description available
Submitted by
thegamerbr1
-
9 years ago
1
Repeating letters more than once
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Get Src Image Tag
PCRE (PHP <7.3)
no description available
Submitted by
Leo Pham
-
9 years ago
1
Thaana
PCRE (PHP <7.3)
Thaana detect
Submitted by
Yoosuf
-
9 years ago
1
Searching succeeding matching words
PCRE (PHP <7.3)
If you want to search succeeding words replace number in curly brace
Submitted by
tassman
-
9 years ago
1
Razor template for JS files
PCRE (PHP <7.3)
no description available
Submitted by
Rodrigo Stuchi
-
9 years ago
1
email w/o query params
PCRE (PHP <7.3)
highlights emails that don't have query parameters
Submitted by
duaazahi
-
9 years ago
1
LinkedIn Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
regex to find img src tags into html
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Date and Day
PCRE (PHP <7.3)
Thur 10 Tue 2 Mon 1 e.t.c
Submitted by
anonymous
-
9 years ago
1
matches name in author field in Epic Notes
Python
Matches author fields
Submitted by
Mike Adams
-
9 years ago
1
Twitter hashtag
PCRE (PHP <7.3)
no description available
Submitted by
ksc
-
9 years ago
1
srt time frame
Python
srt time frame
Submitted by
anonymous
-
9 years ago
1
...
464
465
466
467
468
...
581
Community Library Entry
11
Regular Expression
ECMAScript (JavaScript)
/
(?:
https
?
:
\/\/
)?
(?:
www
\.
)?
(?:
youtu
\.
be
\/
|
youtube
\.
com
\/
(?:
embed
\/
|
v
\/
|
playlist
\?
|
watch
\?
v=
|
watch
\?
.
+
(?:
&
|
&
)
;v=
)
)
(
[
a
-
zA
-
Z0
-
9
\-
_
]
{11}
)?
(?:
(?:
\?
|
&
|
&
)
index=
(
(?:
\d
){1,3}
)
)?
(?:
(?:
\?
|
&
|
&
)?
list=
(
[
a
-
zA
-
Z
\-
_0
-
9
]
{34}
)
)?
(?:
\S
+
)?
/
g
Open regex in editor
Description
extract video id, index, play list id from youtube url
Submitted by
anonymous
-
9 years ago