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...
0
delete brackets from wiki
PCRE (PHP <7.3)
in order to delete [1] brackets like that
Submitted by
anonymous
-
5 years ago
0
Legendas | Cor | 1ª passagem
PCRE (PHP <7.3)
https://regex101.com/r/HkFYQb/1
Submitted by
anonymous
-
5 years ago
0
iteration 10/29/19
PCRE (PHP <7.3)
almost done
Submitted by
anonymous
-
5 years ago
0
fastHistory - REGEXP_INSERT_CMD
Python
no description available
Submitted by
anonymous
-
5 years ago
0
mongodb_log_locks_v1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
MemoryChannel
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
MemoryChannel
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
MemoryChannel
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
GapList
ECMAScript (JavaScript)
read in gap list file with date day range between 17-21
Submitted by
anonymous
-
5 years ago
0
GapList
ECMAScript (JavaScript)
read in gap list file with date day range between 17-21
Submitted by
anonymous
-
5 years ago
0
Legal Email
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Palindrome
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
MemoryChannel
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
section3
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Soundcloud (Single track)
PCRE (PHP <7.3)
Capture only the URL for a Soundcloud track. All other options, pages, sets and variations are either ignored (if needed) or filtered. Result; a clean Soundcloud track URL.
Submitted by
anonymous
-
5 years ago
0
Match square brackets with escape backslash symbols
PCRE (PHP <7.3)
This regex allows to match all in square brackets with ability to escape square brackets by using "\\"
Submitted by
anonymous
-
5 years ago
0
YouTube (Extract video ID)
PCRE (PHP <7.3)
Only validates (and extracts) a correct YouTube video ID
Submitted by
Wiliam Castilhos, Ramon Barros
-
5 years ago
0
naming
Python
EAS naming
Submitted by
anonymous
-
5 years ago
(Last modified 2 years ago)
0
AE Log Line
Python
no description available
Submitted by
anonymous
-
5 years ago
0
DYN Listing Detail Pages with SEO URL
PCRE (PHP <7.3)
DYN Listing Detail Pages with SEO URL incoming URL examples: https://www.rogerholloway.com/listings/view/5330-carmel-crest-lane-charlotte-nc-homes-for-sale-3530458.html RewriteRule (?:^listings\/view\/)(?:.)-(\d+)(?!.\d)(?:\.html)$ https://www.rogerholloway.com/property-search/detail/93/$1 [R=302,L]
Submitted by
anonymous
-
5 years ago
1
...
286
287
288
289
290
...
900
Community Library Entry
1
Regular Expression
PCRE2 (PHP >=7.3)
/
^
(?=
\S
*
[
a
-
z
]
)
(?=
\S
*
[
A
-
Z
]
)
(?=
\S
*
[
0
-
9
]
)
(?=
\S
*
[
[:punct:]
|§µ¤£¨
]
)
\S
{8,}
$
/
gm
Open regex in editor
Description
1 caractère minuscule minimum
1 caractère majuscule minimum
1 chiffre minimum
1 caractère spécial minimum
pas d'espace
8 caractères minimum en tout
Submitted by
Sofiane
-
2 years ago