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,040 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
Check base64 data
ECMAScript (JavaScript)
no description available
Submitted by
gullitmiranda
-
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
USER-AGENT 00001403
ECMAScript (JavaScript)
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
crc32_pattern
Python
pattern to detect the CRC32 from a filename
Submitted by
anonymous
-
8 years ago
0
date pattern
Python
This regex can read dates YYYY/MM/DD, dd/mm/yy, Month dd YYYY, YYYY Month dd where Month is the literal description of the month (jan, feb, mar, ..., dec). Use the ignore case flag. It has three capture groups. The regex doesn't handle the sequence logic, that has to be managed later on the capture...
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
1
...
12
13
14
15
16
...
902
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
(
[
A
-
z
]
{3}
[
\d
]
{2}
[
\d
]
{1,2}
:
[
\d
]
{1,2}
:
[
\d
]
{1,2}
)
(
[
\d
]
{1,3}
\.
[
\d
]
{1,3}
\.
[
\d
]
{1,3}
\.
[
\d
]
{1,3}
)
(
\[
S
\=
[
\d
]
{9}
\]
)
(
\[
[
A
-
z
]
ID=
.
{1,18}
\]
)
\s
{1,3}
(
\(
N
\s
[
\d
]
{5,20}
\)
)?
(
\s
+
(
.
*
)
)
\s
{1,3}
?
(
\[
Time:
.
*
\]
)?
/
gm
Open regex in editor
Description
no description available
Submitted by
sdf
-
4 years ago