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
File Pdf and Image jpg Extention
PCRE (PHP <7.3)
File Pdf and Image jpg Extention
Submitted by
Wafique
-
7 years ago
0
Lb4 mat
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
E-mail address incl. domain, third-level-domain (optional) and top-level-domain
PCRE (PHP <7.3)
no description available
Submitted by
Ralph Bolliger
-
7 years ago
0
column aliasing
PCRE (PHP <7.3)
no description available
Submitted by
goran biljetina
-
7 years ago
0
chinese phone number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Java Regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
SRP
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
RegexA-Z
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Alternative to "Current Error" Lookbehind
PCRE (PHP <7.3)
Regex original: (?<!Current\s)Error: Porém expect4j utiliza classes de regex do Apache Oro, que não possuem suporte para lookbehind.
Submitted by
Patrick Bard
-
7 years ago
0
pde-member
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Regex to match positive or negative number or empty string, but not '-' alone
ECMAScript (JavaScript)
no description available
Submitted by
myth
-
7 years ago
0
Operator with Number
PCRE (PHP <7.3)
no description available
Submitted by
Kgunner
-
7 years ago
0
Brackets
PCRE (PHP <7.3)
Task from check.io. You are given an expression with numbers, brackets and operators. For this task only the brackets matter. Brackets come in three flavors: "{}" "()" or "[]". Brackets are used to determine scope or to restrict some expression. If a bracket is open, then it must be closed with a c...
Submitted by
anonymous
-
7 years ago
0
multiple in between regex
PCRE (PHP <7.3)
this helps to extract the start and end tag but even if in between the start appears again.. it just captures the first start and the next occurence of end tag. only thing missing is i want to include the end of the line of the end tag
Submitted by
anonymous
-
7 years ago
0
Registry of Starfleet vessels
PCRE (PHP <7.3)
Matches registry type and number of Starfleet vessels
Submitted by
Luca Mauri
-
7 years ago
0
extract most parts of possible <IMG> tag attributes (Oren Wassersprung)
PCRE (PHP <7.3)
this reg will extract: "content" of SRC "content" of ALT complete width="???" "content" of style attr. ...
Submitted by
anonymous
-
7 years ago
0
regex to find all types of youtube occurences in html
PCRE (PHP <7.3)
this will find any type of youtube embed or link to a video so you can replace with your own IFRAME $youtube_replacement = '';
Submitted by
anonymous
-
7 years ago
0
Regex for C-style assignments
Golang
no description available
Submitted by
cemares
-
7 years ago
0
iOS Bundle ID
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
iOS Bundle ID starts and ends with { }
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
1
...
79
80
81
82
83
...
900
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
\b
(
\d
{1,2}
|
1
\d
{2}
|
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
)
\b
\.
\b
(
\d
{1,2}
|
1
\d
{2}
|
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
)
\b
\.
\b
(
\d
{1,2}
|
1
\d
{2}
|
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
)
\b
\.
\b
(
\d
{1,2}
|
1
\d
{2}
|
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
)
\b
"
gm
Open regex in editor
Description
expression to capture valid IP
Submitted by
anonymous
-
2 years ago