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 5,740 community submitted regex patterns...
0
match words between '::' '::'
ECMAScript (JavaScript)
matches words between :: characters ("some text ::this should be matched::")
Submitted by
https://stackoverflow.com/users/3832970/wiktor-stribi%c5%bcew
-
4 years ago
0
conditional phone numbers
Python
no description available
Submitted by
anonymous
-
4 years ago
0
MongoDB connection string has username and password
ECMAScript (JavaScript)
Test if a mongo db connection string has a username and password declared in it. Doesn't work with with multi host ATM
Submitted by
Gecko Pico
-
4 years ago
0
Url regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 3 years ago)
0
Question 2
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Найти все ссылки
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Youtube Formatted Duration
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
Remove url links
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Strip misc punctuation
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Remove Non-words
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Remove multiple letter repeating words
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Remove short words
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Remove long words
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Get Dynamic Values from Mustache
ECMAScript (JavaScript)
This regex can be used to get values from the valid mustache syntax i.e double floral brackets
Submitted by
PranomVignesh<pranomvignesh@gmail.com>
-
4 years ago
0
basic
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
named groups
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Negative and Positive Look Ahead
ECMAScript (JavaScript)
no description available
Submitted by
Rodolfo Faquin Della Justina
-
4 years ago
0
Name (line) - still not working
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
name (paragraph)
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
Work Card
Python
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
1
...
225
226
227
228
229
...
287
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
^
(?:
0
*
)
(
\d
+
(
\.
(
25
|
5
|
75
)
)?
)
(?:
0
*
)
$
/
gm
Open regex in editor
Description
000.250 => 0.25 1.1 => 1 0.0 => 0
Submitted by
Paul Erickson
-
9 years ago