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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 3,080 community submitted regex patterns...
0
Password Validator v1.0
PCRE2 (PHP >=7.3)
Validates a passwords based on the following rules: x10 characters or more x1 Lowercase / Uppercase characters needs to be found once x1 numeric needed x1 punctuation character needed...
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Password Validator (8 Characters Max)
PCRE2 (PHP >=7.3)
8 characters long Must include capital letters Must include small letters Must include numbers Must include special characters NOTE: Can also use [[:punct:]] for special characters but it may not be supported by your regex engine.
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Therapi param type name fix
Java 8
This regex extracts only the param type and omits any prefixed annotations included in the name.
Submitted by
anonymous
-
3 years ago
0
Password in java
Java 8
password in java
Submitted by
anonymous
-
3 years ago
0
Mayne Way Entertainment
PCRE2 (PHP >=7.3)
Hi Everyone, I am Lahyan Djeh Mayne Way Entertainment Founder&CEO http://fbuy.me/v/lahyandjeh# www.maynewayent.com maynewayent.com/https://wa.me/c/254725444492
Submitted by
Lahyan Djeh
-
3 years ago
0
Regex Extrato
PCRE2 (PHP >=7.3)
Identificação do header do extrato, validando os códigos de banco FEBRABAN + Data + Agencia e Conta
Submitted by
Geraldo
-
3 years ago
0
Minecraft Color Code Regex
Java 8
Easy to remove minecraft color codes from strings.
Submitted by
Saniee
-
3 years ago
0
JS Parse rgb or rgba CSS string
PCRE2 (PHP >=7.3)
This will parse and give you the values of an RGB or RGBA CSS style.
Submitted by
Beau Beauchamp, WebTIGERS
-
3 years ago
0
Pull Words from Sentence
Java 8
Simple little regex to pull words out of a sentence. Obviously \w+ exists, but this accounts for a few corner cases that would normally be missed. Things like let's or ten-four good-buddy.
Submitted by
Tony B.
-
3 years ago
0
aaa
PCRE2 (PHP >=7.3)
aaa
Submitted by
anonymous
-
3 years ago
0
MaskTDCView4D
Java 8
permite enmascarar la cadena de caracteres y deja mostrar los ultimos 4 digitos
Submitted by
anonymous
-
3 years ago
0
primerCaracter
Java 8
obtiene el primer caracter de cada palabra luego de un espacio
Submitted by
anonymous
-
3 years ago
0
Validar email
PCRE2 (PHP >=7.3)
.
Submitted by
anonymous
-
3 years ago
0
Comentarios en Basic
PCRE2 (PHP >=7.3)
.
Submitted by
anonymous
-
3 years ago
0
Get the username from LinkedIn-URL
PCRE2 (PHP >=7.3)
Get only the profile name from international or german LinkedIn-URL
Submitted by
LEIK Software
-
3 years ago
0
email
PCRE2 (PHP >=7.3)
........
Submitted by
ramses
-
3 years ago
0
parse/replace closed tag
PCRE2 (PHP >=7.3)
parse and replace a {tag}..{/tag} or {tag}
Submitted by
fl0
-
3 years ago
0
HTML Table Parse
PCRE2 (PHP >=7.3)
The pulls in and groups all HTML tables.
Submitted by
PrimeTime416
-
3 years ago
0
Campeonato Brasileiro Serie A - Transmissões Oficiais dos Times - TEMPOS DO JOGO
PCRE2 (PHP >=7.3)
Essa expressão regular captura os minutos (45' / 38min , etc..) em tweets dos times da série A durante as transmissões dos jogos do campeonato brasileiro da série A. O padrão inclui uma enorme variedade de grafias diferentes (incluindo o emoticon do cronômetro), sendo o objetivo conseguir retornar ...
Submitted by
Leonardo Paris
-
3 years ago
0
Indian Pincode
PCRE2 (PHP >=7.3)
Indian area Pincode regex
Submitted by
Vipul Jha
-
3 years ago
1
...
19
20
21
22
23
...
154
Hostname validation
3
Regular Expression
Golang
`
(?i)
^
(?:
(
[
a
-
z0
-
9-
]
+
|
\*
)
\.
)?
(
[
a
-
z0
-
9-
]
{1,61}
)
\.
(
[
a
-
z0
-
9
]
{2,7}
)
$
`
gm
Open regex in editor
Description
Validates subdomain, root domain, and wild card domains
Submitted by
AnonymousDapper
-
8 years ago