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
Match password
Python
Requirements: At least one lower and one upper case letter At least one digit or special character
Submitted by
anonymous
-
3 years ago
0
繼續畫記 bug
ECMAScript (JavaScript)
fix 繼續畫記 can not merge overlap tag bug: // failed case: <*認知/自殺與憂鬱_3*>之前我的朋友</*認知/自殺與憂鬱_3*>生了什麼病現在她都好了還硬要給這什麼預後的藥她說對<*認知/自殺與憂鬱_3*>成分會過敏也</*認知/自殺與憂鬱_3*>沒有避開想害人也不是這樣還是對沒生病的地方開藥她已經身<*認知/自殺與憂鬱_3*>材在一天內</*認知/自殺與憂鬱_3*> // in this case, it'll have matched group: // part1: <*認...
Submitted by
anonymous
-
3 years ago
0
Coordinates Validation
PCRE2 (PHP >=7.3)
This is for validating coordinates
Submitted by
anonymous
-
3 years ago
0
thx hjpotter
PCRE2 (PHP >=7.3)
Thanks
Submitted by
hjpotter92
-
3 years ago
1
Parse URLs
Python
A regular expression to parse URLs. Complete with comments.
Submitted by
D. Torres
-
3 years ago
0
Encontrar los caracteres que habría que eliminar para convertir una cadena en un número decimal completo o por completar.
PCRE (PHP <7.3)
Encontrar cada carácter que cumplan alguna de las siguientes condiciones: No es un dígito ni un punto ni un signo menos. Un signo menos que no es el primer carácter de la cadena. Un punto después del cual se puede encontrar otro punto.
Submitted by
Jorge Gómez Prada
-
3 years ago
0
Glue
PCRE2 (PHP >=7.3)
Join separate words together! Joinseparatewordstogether!
Submitted by
Mendel Groner
-
3 years ago
0
Minimum words
ECMAScript (JavaScript)
change the ending {5,} to {x,} with x being minimum words
Submitted by
anonymous
-
3 years ago
0
Unordered list between text in markdown
PCRE2 (PHP >=7.3)
This regex matches with an unordered list between different kinds of text displayed in markdown
Submitted by
anonymous
-
3 years ago
0
Select LIMIT-OFFSET clause in SQL query
ECMAScript (JavaScript)
Select the LIMIT/OFFSET clause of an SQL query
Submitted by
Matthew Marcus
-
3 years ago
0
Indian RTO
ECMAScript (JavaScript)
RTO code for validation
Submitted by
Rama
-
3 years ago
0
Octal regex
PCRE2 (PHP >=7.3)
Octal regex
Submitted by
anonymous
-
3 years ago
0
hexadecimal
PCRE2 (PHP >=7.3)
Hexadecimal regex
Submitted by
anonymous
-
3 years ago
0
Changelog commit template
Golang
Changelog commit template
Submitted by
anonymous
-
3 years ago
0
Ignore SITE.tumblr.com EXCEPT static, cdn, and a custom one
PCRE2 (PHP >=7.3)
Customise it to fit your needs
Submitted by
TheTechRobo
-
3 years ago
0
remove ending a's
PCRE2 (PHP >=7.3)
here we have removed the a's at the end of each line
Submitted by
anonymous
-
3 years ago
0
get domain from url
Python
From link Get domain from url start with: http, https, www, or abc:abc.google.com
Submitted by
anonymous
-
3 years ago
0
check behance profile url
ECMAScript (JavaScript)
check if a behance profile url is valid
Submitted by
Kelechi Apugo
-
3 years ago
0
Check Dribbble profile url
ECMAScript (JavaScript)
Check a Dribbble profile url is valid
Submitted by
Kelechi Apugo
-
3 years ago
0
Check a google docs sharing link
ECMAScript (JavaScript)
Check if a link is a google docs sharing link.
Submitted by
Kelechi Apugo
-
3 years ago
1
...
188
189
190
191
192
...
901
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
(
\b
)
(
https
?
:
\/\/
)
(
www
.
)?
[
\w
-
]
{2,}
\.
[
a
-
zA
-
Z
\-
0
-
9
]
{1,}
[
\w
\/\.\?\=\&\#\-\%\+
]
*
(
\b
)
/
ig
Open regex in editor
Description
For full url.
Submitted by
MrDenzo
-
8 years ago