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
Find a number between two strings.
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
phone number validator
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
反向引用
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
CN detection
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
MineDisc
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Finding match for a expression in a case-insensitive and flexible way
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Detect Twitch cheermotes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Bazel workspace parser
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Minecraft_to_Discord_formatting
Python
no description available
Submitted by
anonymous
-
5 years ago
0
PV Codes: ANT
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ANT PDP's
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ANT pages
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Sections
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Emojicleaner
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Crontabber
Python
no description available
Submitted by
anonymous
-
5 years ago
0
titulo
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ngettext regex
Python
Matches strings within a ngettext call. Covers the following examples: ngtxt('i am in single-quotes', 'i am in single-quotes 2', foo) ngtxt('i have \' an escaped single-quote within single-quotes', 'i have \' an escaped single-quote within single-quotes 2', foo) ngtxt('i have a "double-quote" in sin...
Submitted by
anonymous
-
5 years ago
0
gettext regex
Python
Matches strings within a gettext call. Covers the following examples: gtxt('i am in single-quotes') gtxt('i have \' an escaped single-quote within single-quotes') gtxt('i have a "double-quote" in single-quotes') gtxt("i am in double-quotes") gtxt("i am in double-quotes with single 'quotes'")...
Submitted by
anonymous
-
5 years ago
0
number_lexer
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
654
655
656
657
658
...
900
Community Library Entry
0
Regular Expression
Python
r"
^
(?P<disabled>
#
*
)?
(?P<min>
\*
/
\d
+
|
\*
|
(?:
\d
+
,
?
)+
)
(?:
)
(?P<hour>
\*
/
\d
+
|
\*
|
(?:
\d
+
,
?
)+
)
(?:
)
(?P<day>
\*
/
\d
+
|
\*
|
(?:
\d
+
,
?
)+
)
(?:
)
(?P<month>
\*
/
\d
+
|
\*
|
(?:
\d
+
,
?
)+
)
(?:
)
(?P<dayofweek>
\*
/
\d
+
|
\*
|
(?:
\d
+
,
?
)+
)
"
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
5 years ago