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 5,640 community submitted regex patterns...
0
resource
ECMAScript (JavaScript)
Acceptable resources
Submitted by
anonymous
-
7 years ago
0
Windows Hostname Validator
ECMAScript (JavaScript)
Windows Hostname Validator
Submitted by
anonymous
-
7 years ago
0
Validate App Proxy Url
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Finding All assets RegEx
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Encuentra errores en diálogos de narrativa
Python
Esta expresión permite localizar la mayor parte de los errores que se comenten con las acotaciones de los diálogos.
Submitted by
Manuel Benet
-
7 years ago
0
CSS & JSON finding RegEx
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
finding case statements in select
Python
no description available
Submitted by
anonymous
-
7 years ago
0
co
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Honorifics Detection
ECMAScript (JavaScript)
Detects Honorifics in a string. proceeding character after Honorifics needs to be an non alph numeric to be detected
Submitted by
anonymous
-
7 years ago
0
AU Validate
ECMAScript (JavaScript)
Au Validate
Submitted by
anonymous
-
7 years ago
1
Basic DOI
Python
no description available
Submitted by
anonymous
-
7 years ago
0
CURP de México
ECMAScript (JavaScript)
¿Qué es la CURP? La Clave Única de Registro de Población (CURP) es un código alfanumérico único de identidad de 18 caracteres utilizado para identificar oficialmente tanto a residentes como a ciudadanos mexicanos, expedido por el RENAPO. La misma, se forma a partir de las letras de los nombres y ap...
Submitted by
anonymous
-
7 years ago
0
IPA Matcher
Python
no description available
Submitted by
hakr14
-
7 years ago
0
firebase downloadURL
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Matching any duplicated words
ECMAScript (JavaScript)
By Lynda.com
Submitted by
Fares Alarabi
-
7 years ago
0
Matching Multiple Names as First & Last Name
ECMAScript (JavaScript)
This Regex will help to match any first & last name from paragraph as one line, if you would to do the matching based on multi lines, add "gm" in the last of this query. /([A-Za-z0-9]\w+\s\w+)+/gm
Submitted by
Fares Alarabi
-
7 years ago
0
Voltage
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Email Regex
ECMAScript (JavaScript)
Allow for emails with 2 '.' after the '@' symbol
Submitted by
anonymous
-
7 years ago
0
Skip line contain HTML element attribute which have a URL value
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
test2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
1
...
176
177
178
179
180
...
282
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