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 3,760 community submitted regex patterns...
0
Get/Set Property Signature
ECMAScript (JavaScript)
Matches full get/set property signature of C#
Submitted by
anonymous
-
7 years ago
0
regex for android consumer site
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
only numbers csv
ECMAScript (JavaScript)
regex to match an only numbers csv
Submitted by
anonymous
-
7 years ago
2
Re Twitts
ECMAScript (JavaScript)
find retwitt hashtag on Twitters and add a label to highlight it.
Submitted by
anonymous
-
7 years ago
2
Re Twitts
ECMAScript (JavaScript)
find retwitt hashtag on Twitters and add a label to highlight it.
Submitted by
anonymous
-
7 years ago
0
NFS share
ECMAScript (JavaScript)
matches a NFS share valid URL.
Submitted by
anonymous
-
7 years ago
0
プリパラ
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
markdown multiline code
ECMAScript (JavaScript)
no description available
Submitted by
EzioShiki
-
7 years ago
0
Folder name validation
ECMAScript (JavaScript)
This is a javascript regular expression to validate characters not allowed on folder names. Some of them are not allowed at any place and other only at the beginning or the end. The characters not allowed at the beginning or the end are: Blank space Dot (.)...
Submitted by
Matías Gabriel Katz
-
7 years ago
0
//
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Match last word in string
ECMAScript (JavaScript)
no description available
Submitted by
Isak
-
7 years ago
0
Matches the full path to a file until the last slash or back slash, leaving just the filename itself unmatched
ECMAScript (JavaScript)
For instance in the string: /bla/di/bla/file.extention it would match: /bla/di/bla/
Submitted by
anonymous
-
7 years ago
0
All url with latest (optional)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Select Base Url without standard ports
ECMAScript (JavaScript)
1 Part baseurl (req) 2 Part Port (optional) but not 443 or 80 3 Part /latest (optional) (req)(:opt(!443 or 80))(opt)
Submitted by
anonymous
-
7 years ago
1
...
112
113
114
115
116
...
188
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