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
Uppercase letters
ECMAScript (JavaScript)
See: https://stackoverflow.com/questions/7888238/javascript-split-string-on-uppercase-characters
Submitted by
anonymous
-
6 years ago
0
Integromat help
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
home-assistant
PCRE (PHP <7.3)
Break down home assistant into parts so that pimp-my-log can understand it
Submitted by
anonymous
-
6 years ago
0
Apostroph zu einzelnem deutschen Abführungszeichnen ändern
PCRE (PHP <7.3)
Ersetzen durch: ‘ > einzelnes deutsches Abführungszeichen
Submitted by
anonymous
-
6 years ago
0
prima
Python
(?i)^https?://(www\.)?interphone(\.\w+)+(:[\d]+)?/(\w+)/\w{2}-(?!it{1})
Submitted by
anonymous
-
6 years ago
0
Synop
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Synop
Python
no description available
Submitted by
anonymous
-
6 years ago
0
extractScreenNumber
ECMAScript (JavaScript)
Separate values from Coates file names
Submitted by
anonymous
-
6 years ago
0
Float number regex
Python
Float number without letters and symbols
Submitted by
anonymous
-
6 years ago
0
ebay通知-AuctionCheckoutComplete
Python
获取通知(AuctionCheckoutComplete)的buyerID
Submitted by
anonymous
-
6 years ago
0
Binding Regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Binding Regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Manual Enrollments
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Updating Demonstrations
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Get commit parameters
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Delete Enrollments
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
example on python re.sub using groups references \0 and \1 (with Russian text)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
PEP440 version
PCRE (PHP <7.3)
Parses a PEP440 version. WARNING: This is a greedy regex and it might catch strings you don't expect it to, any number triggers it. PEP440 documentation: https://www.python.org/dev/peps/pep-0440/
Submitted by
anonymous
-
6 years ago
0
Python version (PEP440)
PCRE (PHP <7.3)
Parses a python version which follows the PEP440 versioning scheme, obtained by calling the command python --version. This is done in an almost strict manner in order to avoid picking up undesired strings.
Submitted by
anonymous
-
6 years ago
0
urls
PCRE (PHP <7.3)
url
Submitted by
anonymous
-
6 years ago
1
...
514
515
516
517
518
...
900
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
(
(
https
(?:
s
)?
:
\/\/
)?
(
www
\.
)?
)?
(?:
youtu
\.
be
\/
|
youtube
\.
com
\/
(?:
embed
\/
|
v
\/
|
watch
\?
v=
|
watch
\?
&v=
)
)
(
(?:
\w
|
-
){11}
)
(
(?:
\&
|
\?
)
\S
*
)?
/
Open regex in editor
Description
This expression validates if a string is a YouTube video. Note this will not work for playlists.
Submitted by
UnrealApex
-
3 years ago