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,020 community submitted regex patterns...
0
prepareTicket_closing
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Ignorer les espaces
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
extract <a> tags from an html page
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
ARDRG or Hospital PrvNbr or AgeGroup
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
between keywords
PCRE (PHP <7.3)
STARTKEYWORD (.+?)(?:$| ENDKEYWORD$)
Submitted by
anonymous
-
6 years ago
0
between keywords
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Brighthouse get User email address and Role name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
valida percentual até 100%
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Get RM Shortcodes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
20
best youtube id match ( iframe embed replace ready )
Recommended
PCRE (PHP <7.3)
MATCH ANY YOUTUBE ID author : mi-ca v1.0 – 2017.03.08 This Regex match any youtube url and grab the ID. Embed ready √ --...
Submitted by
mi-ca.ch
-
6 years ago
0
Email Regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Password of Length 8-16
ECMAScript (JavaScript)
Minimum one capital, one special, one digit, no whitespace
Submitted by
anonymous
-
6 years ago
0
Punto 3 parcial
ECMAScript (JavaScript)
psi
Submitted by
anonymous
-
6 years ago
0
file bench
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Discord code block regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Work Experince in Years
ECMAScript (JavaScript)
Should allow in the following format YY.MM (Years.Months)
Submitted by
anonymous
-
6 years ago
0
Remove Trailing Slash
ECMAScript (JavaScript)
It extracts 3 groups before trailing slash trailing slash queryString ?name1=value1 Then, combing group 1 and group 3....
Submitted by
anonymous
-
6 years ago
0
remove a ‘name’ query that is passed since it is PII
PCRE (PHP <7.3)
The first part is the query’s name and the ‘=’. Keep in mind that the query may be one of many and between or before other queries that we want to remain. The next part of the expression, ‘’, is targeting any character that is not an ampersand so that it stops before the next query. The asterisk i...
Submitted by
anonymous
-
6 years ago
0
remove a ‘name’ query that is passed since it is PII
PCRE (PHP <7.3)
The first part is the query’s name and the ‘=’. Keep in mind that the query may be one of many and between or before other queries that we want to remain. The next part of the expression, ‘’, is targeting any character that is not an ampersand so that it stops before the next query. The asterisk i...
Submitted by
anonymous
-
6 years ago
0
Remove all the query String
PCRE (PHP <7.3)
If you are sure none of the queries are relevant to your content, you can also remove all of them at once to have clean page paths.
Submitted by
anonymous
-
6 years ago
1
...
453
454
455
456
457
...
901
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
[
\d
]
{1,2}
(
\.
(
[
\d
]
{1,3}
)
)?
)
$
|
^
(
100
(
\.
0
{1,3}
)?
)
$
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
6 years ago