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,020 community submitted regex patterns...
0
Split output of $(ip addr) into individual interfaces
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Ignore only the IPv4 Network & Broadcast IP's
Python
Using two similar sets of /22 IP ranges (192.168.100.1/22 & 192.168.200.1/22); Select all IP's, ignoring only the Network & Broadcast IP's.
Submitted by
Jason
-
6 years ago
0
Facebook: parse page name from url
Python
no description available
Submitted by
cx
-
6 years ago
0
actual
Python
no description available
Submitted by
anonymous
-
6 years ago
0
strict major, minor, patch
Python
no description available
Submitted by
anonymous
-
6 years ago
0
strict major, minor
Python
no description available
Submitted by
anonymous
-
6 years ago
0
auto-gen-test-format
Python
no description available
Submitted by
anonymous
-
6 years ago
0
positive lookahead
Python
no description available
Submitted by
anonymous
-
6 years ago
0
E-mail
Python
Think about first letter and the later parts are some specific symbol ( .-).
Submitted by
anonymous
-
6 years ago
0
Home Tel-phone
Python
8 digits or 10 digits
Submitted by
anonymous
-
6 years ago
0
c functions search
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Multiple line modifier
Python
Using (?m) to match only the wanted line
Submitted by
anonymous
-
6 years ago
0
phoneNumRegex
Python
Find phone numbers in a text string.
Submitted by
anonymous
-
6 years ago
0
Commit Message - Description Pattern
Python
git-stuff commit template pattern
Submitted by
jeffryangtoni24
-
6 years ago
0
Python Package Metadata Extraction
Python
Regex string that can pull package metadata from python file when its stored in this method: mymeta = 'some meta string'
Submitted by
anonymous
-
6 years ago
0
US News
Python
no description available
Submitted by
Somnath Rakshit
-
6 years ago
0
Bloomberg
Python
WIP
Submitted by
anonymous
-
6 years ago
0
Currency number in BRL
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Dimensions LxA case insensitiv
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Dimensions AxLxC
Python
no description available
Submitted by
anonymous
-
6 years ago
1
...
98
99
100
101
102
...
251
Community Library Entry
1
Regular Expression
PCRE2 (PHP >=7.3)
/
^
https:
\/\/
(
youtu
\.
be
\/
[
A
-
Za
-
z0
-
9
]
{11}
|
www
\.
youtube
\.
com
\/
watch
\?
v=
[
A
-
Za
-
z0
-
9
]
{11}
)
$
/
Open regex in editor
Description
This regular expression allows you to test strings to see if they are youtube video links.
Submitted by
Pythack
-
3 years ago