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
Match a string, except when the string is enclosed in double-quotes
Python
For example, when it is needed to match the string "Tarzan" (without the quotes), in "Tarzan and Jane", and "Jane and Tarzan", but not in "Tarzan" (with the quotes). The wanted string is in Group 1.
Submitted by
anonymous
-
7 years ago
0
includes con palabras repetidas
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
DnD Number Roll
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
DnD Get Shortcodes
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Preços
PCRE (PHP <7.3)
Encontra qualquer preço presente num documento.
Submitted by
anonymous
-
7 years ago
0
Ip Address
PCRE (PHP <7.3)
match ip address
Submitted by
anonymous
-
7 years ago
0
Email address
PCRE (PHP <7.3)
Regular expression with named groups for email addresses
Submitted by
anonymous
-
7 years ago
0
Emoticons
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Palavras duplicadas
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
.js matcher
ECMAScript (JavaScript)
matches js files like app.js or jquery.min.js
Submitted by
anonymous
-
7 years ago
0
check name thai
ECMAScript (JavaScript)
check name thai
Submitted by
leenawat
-
7 years ago
0
ก-ฮ
ECMAScript (JavaScript)
กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพภมยรลฤลวศษสหฬอฮ ref: http://www.utf8-chartable.de/unicode-utf8-table.pl?start=3584&number=128&utf8=0x
Submitted by
leenawat
-
7 years ago
0
Mathematics Expression
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Mathematics Expression - Method Or Blanket
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Match simple mathemathics expressions
ECMAScript (JavaScript)
This regexp matches for example that: 10+10 10,0+9,9 10,0+9 10+9,9 allowed operations are: +,-,/,*...
Submitted by
Dominik
-
7 years ago
0
nawiasy
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Regex to find only numbers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
swedbank
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
ISO 8601 date
Python
designed to work specifically with the parser of the python dateutil package
Submitted by
anonymous
-
7 years ago
0
ISO 8601 date external
Python
http://www.pelagodesign.com/blog/2009/05/20/iso-8601-date-validation-that-doesnt-suck/
Submitted by
anonymous
-
7 years ago
1
...
43
44
45
46
47
...
900
Community Library Entry
1
Regular Expression
.NET 7.0 (C#)
@"
(?<=
(?!
(
https
*
://
)*
(
(
127
)
|
(
192
\.
168
)
|
(
0
\.
0
\.
0
\.
0
)
)
)
(?:
(?:
https
*
://
)
|
^
)
)
(?:
(?:
2
[
0
-
5
]
[
0
-
5
]
|
1
[
0
-
9
]
{2}
|
[
0
-
9
]
{1,2}
)
\.
(?:
2
[
0
-
5
]
[
0
-
5
]
|
1
[
0
-
9
]
{2}
|
[
0
-
9
]
{1,2}
)
\.
(?:
2
[
0
-
5
]
[
0
-
5
]
|
1
[
0
-
9
]
{2}
|
[
0
-
9
]
{1,2}
)
\.
(?:
2
[
0
-
5
]
[
0
-
5
]
|
1
[
0
-
9
]
{2}
|
[
0
-
9
]
{1,2}
)
)
(?=
[^
\d\s
]
|
$
)
"
gm
Open regex in editor
Description
Matches IP addresses excluding local addresses
Submitted by
pvl_zh
-
3 months ago