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 2,520 community submitted regex patterns...
0
Code du travail articles
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Spaces around punctuation
Python
no description available
Submitted by
anonymous
-
6 years ago
0
csdetail
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Finding imports
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Finding imports
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Codeblock Recogniser
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Flag Recogniser
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
thue
Python
no description available
Submitted by
anonymous
-
6 years ago
0
amf signals
Python
no description available
Submitted by
anonymous
-
6 years ago
0
The Phrase: تابعه فلان between square brackets.
Python
every part of the phrase can be replaced
Submitted by
anonymous
-
6 years ago
0
abc
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
aaa
Python
aaa
Submitted by
anonymous
-
6 years ago
0
prima
Python
(?i)^https?://(www\.)?interphone(\.\w+)+(:[\d]+)?/(\w+)/\w{2}-(?!it{1})
Submitted by
anonymous
-
6 years ago
0
Synop
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Synop
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Float number regex
Python
Float number without letters and symbols
Submitted by
anonymous
-
6 years ago
0
ebay通知-AuctionCheckoutComplete
Python
获取通知(AuctionCheckoutComplete)的buyerID
Submitted by
anonymous
-
6 years ago
0
feetinches1
Python
no description available
Submitted by
anonymous
-
6 years ago
0
aprs
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Matches invalid Excel table names
Python
This regex is designed to match invalid regex names. The known false positive is when the \w{1,2}+[0-9]+ pattern matches things which fall outside the scope of an Excel documents range, and therefore become valid table references.
Submitted by
anonymous
-
6 years ago
1
...
19
20
21
22
23
...
126
Community Library Entry
3
Regular Expression
Golang
`
(?i)
^
(?:
(
[
a
-
z0
-
9-
]
+
|
\*
)
\.
)?
(
[
a
-
z0
-
9-
]
{1,61}
)
\.
(
[
a
-
z0
-
9
]
{2,7}
)
$
`
gm
Open regex in editor
Description
Validates subdomain, root domain, and wild card domains
Submitted by
AnonymousDapper
-
8 years ago