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...
1
LogTag data from Error stack
ECMAScript (JavaScript)
no description available
Submitted by
rbeer
-
8 years ago
1
Non greedy Quotes JS
ECMAScript (JavaScript)
Matches 4 different types of quoted text avoiding html element and element attributes. Single quotes allow for contractions withing the quotes.
Submitted by
Shadi Lahham
-
8 years ago
1
Date and Day
PCRE (PHP <7.3)
Thur 10 Tue 2 Mon 1 e.t.c
Submitted by
anonymous
-
8 years ago
1
matches name in author field in Epic Notes
Python
Matches author fields
Submitted by
Mike Adams
-
8 years ago
1
C#
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
0000000
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
Username check
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
Twitter hashtag
PCRE (PHP <7.3)
no description available
Submitted by
ksc
-
8 years ago
1
srt time frame
Python
srt time frame
Submitted by
anonymous
-
8 years ago
1
Name with spaces also useful for city name
ECMAScript (JavaScript)
It will accepts the name with spaces with no limitation and we can also use same for city.
Submitted by
Pravallika Chowdary
-
8 years ago
1
Mobile number with spaces
ECMAScript (JavaScript)
It accepts the mobile no with space upto 13 digits with country code but without + symbol. following are examples 1.9959966566 2.919959966566 3.91 995 996 6566 4.995 996 6566...
Submitted by
Pravallika Chowdary
-
8 years ago
1
Password with limits
ECMAScript (JavaScript)
It will accepts minimum 8 characters, and should have 1 Uppercase letter, 1 Lowercase letter, 1 Number and 1 Special Character.
Submitted by
Pravallika Chowdary
-
8 years ago
1
Zipcode with alphanumeric
ECMAScript (JavaScript)
It Should take 10 numbers and alphabetic characters and numbers only.
Submitted by
Pravallika Chowdary
-
8 years ago
1
ANGULAR IMPORT TYPESCRIPT
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Data URI scheme
PCRE (PHP <7.3)
Simple and not complete pattern for getting the items of a Data URI scheme.
Submitted by
@afoeder
-
8 years ago
1
tag remover
PCRE (PHP <7.3)
remove html tags, while leaving text in between
Submitted by
anonymous
-
8 years ago
1
url segment parsing
PCRE (PHP <7.3)
URL Parsing
Submitted by
Ricardo Cantu
-
8 years ago
1
Gaddafi
PCRE (PHP <7.3)
Matches all spellings of the name Gaddafi that I've yet discovered.
Submitted by
Klisz
-
8 years ago
1
match @user but not email@example.com
PCRE (PHP <7.3)
for finding user mentions in markdown-like comments
Submitted by
Holger Schmidt (https://github.com/forger)
-
8 years ago
1
Teaching potatoes how to search
Python
You see how it matches the hit ratio line? Yeah m8, that simple
Submitted by
11" Mipsmagician
-
8 years ago
1
...
708
709
710
711
712
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(?=
.
*
(
START
)
)
(?=
.
*
(
END
)
)
(?:
(?:
\1
|
\2
)
|
(?!
^
)
\G
)
\h
+
.
*
?
\b
(
\w
{4,}
)
(?=
.
*
?
(?:
(?:
\1
|
\2
)
)
)
/
g
Open regex in editor
Description
no description available
Submitted by
anonymous
-
4 years ago