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
just tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
israeli phone
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Matching Anything But a Newline
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Matching Anything But a Newline
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
TNRid
PCRE (PHP <7.3)
^-|\b\d.{0,20}.$
Submitted by
anonymous
-
5 years ago
0
Retirar caracteres como espaço tab line feed and carriage return de fora das tags para que a Reg Exp consiga avaliar múltiplas linhas
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Workout Protocol Identifier
PCRE (PHP <7.3)
Just a regex to identify the various workout protocols. It's very flexible as it can ignore multiple spaces between strings. Group 1: Exercise Order Group 2: Exercise Name Group 3: Protocol
Submitted by
anonymous
-
5 years ago
0
Workout Protocol Splitter
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Car Seat (Nuna) CLP
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Filename from Ossec lgs
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Commit msg
Golang
no description available
Submitted by
anonymous
-
4 years ago
0
Encontrar tags HTML que estejam vazias
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Movements
Python
no description available
Submitted by
anonymous
-
5 years ago
0
partial gtaccesss
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Telephone Thai Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Thai District
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Thai Province
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Thai Zipcode
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
phone numbers to links
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
replace more empty <p> by one
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
669
670
671
672
673
...
900
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
^
(?=
(?<http>
(?:
https
?
:
\/\/
){1}
(?:
www
\.
)?
)?
)
(?
(?=
\k<http>
?
(?<ipaddr>
(?:
\d
{1,3}
\.
){3}
\d
{1,3}
(?:
\:
\d
{1,5}
)?
)
)
\k<http>
?
\k<ipaddr>
(?:
\.
[
\w
]
{1,9}
)?
|
\k<http>
(?:
[
\w
]
\.
?
){1,255}
\.
[
\w
]
{1,9}
)
(?:
\/
.
*
)?
$
"
gm
Open regex in editor
Description
Can be used to validate on URL's.
Submitted by
anonymous
-
a year ago