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
Change tags
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Horriblesubs
Python
no description available
Submitted by
anonymous
-
5 years ago
0
CSV Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
no double spaces / leading / trailing spaces
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Coralogix default severity regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Code couleur en hexadécimal
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Code couleur en hexadécimal
ECMAScript (JavaScript)
#(([0-9A-F]{6})|([0-9a-f]{6}))
Submitted by
anonymous
-
5 years ago
0
DC domian name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Data fromato BRL
PCRE (PHP <7.3)
Data no formato Brasileiro
Submitted by
anonymous
-
5 years ago
0
Brazilian telefone number regex
PCRE (PHP <7.3)
Regex to get numbers from brazilian telephone number pattern
Submitted by
anonymous
-
5 years ago
0
Javascript =>Strict Conditinal Operators
PCRE (PHP <7.3)
// @desc Replaces conditional operators with strict variant /* Matches == */ if (e.keyCode == 68) { doCode() } /* Replacement */ if (e.keyCode === 70) { doCode() } /* Problem != */ if (e.keyCode != 69) { doCode() } /* Replacement */ if (e.keyCode !== 71) { doCode() }...
Submitted by
disk0
-
5 years ago
0
generic regular expression for matching text between brackets
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
regular expression for matching text between brackets and the number after the bracket
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
regular expression for matching text between brackets and the number after the bracket
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
regex 2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Mot de passe robuste
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Adresse IPv4
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Mot de passe robuste
PCRE (PHP <7.3)
(([a-zA-Z0-9])()([a-zA-Z0-9])().)
Submitted by
anonymous
-
5 years ago
0
date
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Find (-) at beginning of line or (-) when preceded by whitespace
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
606
607
608
609
610
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(
\b
[^
,
\v\s
]
+
?
,
\s
[^
,
\v\s
]
+
?
)
(
(?:
\s
(?:
and
|
or
)
\s
)
(
\s
?
(?:
above
|
across
|
after
|
at
|
around
|
before
|
behind
|
below
|
beside
|
between
|
by
|
down
|
during
|
for
|
from
|
in
|
inside
|
onto
|
of
|
off
|
on
|
out
|
through
|
to
|
under
|
up
|
with
|
other
)
\s
)?
(?:
\w
+
)
(?:
[
\]\)\?\.\;\!\:
]
)
)
/
gm
Open regex in editor
Description
Searches prose for lists lacking the serial/Oxford comma.
Submitted by
anonymous
-
5 years ago