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 9,420 community submitted regex patterns...
0
Search uc or lc 'x' as a single chr in a sentence
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Extract time values from string (Dutch)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Obter o título de um link e o seu texto
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Obter o título de um link e seu texto
PCRE (PHP <7.3)
Use esta expressão par selecionar todos os links em um texto que contenham o atributo title definido. Possui dois grupos, um que retorna o título e outro que retorna o texto contido entre e
Submitted by
Carlos Barreto Feitoza Filho
-
8 years ago
0
FindValueBetweenQuotes
PCRE (PHP <7.3)
no description available
Submitted by
MAR
-
8 years ago
0
FQDN validation
PCRE (PHP <7.3)
Relaxed validation of the FQDN
Submitted by
anonymous
-
8 years ago
0
arrow function maker
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
looking for proxy in MARC Edit
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
mail headers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Mail
PCRE (PHP <7.3)
Détection de mail
Submitted by
anonymous
-
8 years ago
0
Indian Phone Number
PCRE (PHP <7.3)
Valid number are. 9883443344 09883443344 919883443344 0919883443344...
Submitted by
anonymous
-
8 years ago
0
IBAN
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
UPS
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Find CSS comments including multi line
PCRE (PHP <7.3)
Seems to work well across multi line
Submitted by
anonymous
-
8 years ago
0
date regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
find all java static variables which are not decalared as final
PCRE (PHP <7.3)
Find static variables which are not declared as final.
Submitted by
petod
-
8 years ago
0
Human Name Matching
PCRE (PHP <7.3)
(maybe not perfect) Name matching. Made it for my API to match Firstname and Lastname Params in order to check if that wasn't complete bullshit. Any advice would be accepted /o/
Submitted by
Lurio
-
8 years ago
0
Removing xml namespace prefixes from an xml string
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
SmartStart: Converting old location URIs to new query strings for apache redirection
PCRE (PHP <7.3)
no description available
Submitted by
Mike
-
8 years ago
1
...
8
9
10
11
12
...
471
Community Library Entry
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