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,960 community submitted regex patterns...
1
rstp
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
one deccmal point
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Sterium test
ECMAScript (JavaScript)
no description available
Submitted by
koT
-
9 years ago
1
Rubik Parser (with unit tests)
ECMAScript (JavaScript)
extracts face/slice/axis rotations, pieces, patterns and groups
Submitted by
FabioDiMonte
-
9 years ago
1
soundclouds url in <a>
ECMAScript (JavaScript)
soundclouds url in
Submitted by
ogerly
-
9 years ago
1
youtube link
ECMAScript (JavaScript)
+ link + id
Submitted by
ogerly
-
9 years ago
1
jsDoc Parameter Splitter
ECMAScript (JavaScript)
Finds parameters in jsDocs (parameters are sections of information starting with @ and only appear in a block after free floating text
Submitted by
anonymous
-
9 years ago
1
Regex for matching assignments
ECMAScript (JavaScript)
Match the java assignments and get the assigned value
Submitted by
mohamedrias
-
9 years ago
1
date regex
ECMAScript (JavaScript)
match dd-mm-yyyy
Submitted by
anonymous
-
9 years ago
1
Everthing in an element
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Domain
ECMAScript (JavaScript)
Will return domain portion of a url: Example: http://www.jkrowlings.com/books Returns: www.jkrowlings.com
Submitted by
Scott Burrows
-
9 years ago
1
US Zip Code Validation
ECMAScript (JavaScript)
5 digits and no 0 5/4 times
Submitted by
Ashish
-
9 years ago
1
try1
ECMAScript (JavaScript)
try1
Submitted by
anonymous
-
9 years ago
1
git://git.apache.org/aurora.git
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Name Initials
ECMAScript (JavaScript)
Matches 2 or 3 initials from a name. If there is a "," and suffix like Jr., it does not include that in the result.
Submitted by
Brad M.
-
9 years ago
1
Validate City Names
ECMAScript (JavaScript)
Validate City Names (For USA/ Other country)
Submitted by
Ashish
-
9 years ago
1
Emoji detection for JavaScript
ECMAScript (JavaScript)
Emoji symbols character sets (added \s and +) based on https://github.com/franklsf95/ruby-emoji-regex
Submitted by
Yovav Gad
-
9 years ago
1
Word plus anyword
ECMAScript (JavaScript)
no description available
Submitted by
/ HJ
-
9 years ago
1
Validations
ECMAScript (JavaScript)
no description available
Submitted by
Shavin Fonseka
-
9 years ago
1
opsciimn
ECMAScript (JavaScript)
/iii b.lkm.0plmoi/238888963.1.175.369.2636
Submitted by
cs
-
9 years ago
1
...
25
26
27
28
29
...
198
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