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
Find numbers prefixed by "fieldid=". Retain numbers only.
PCRE (PHP <7.3)
Ignore lines without the "fieldid=" pattern.
Submitted by
anonymous
-
5 years ago
0
tilak phishing file
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
tilak fix
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
tilak partial clean php redirect
PCRE (PHP <7.3)
partial clean php redirect
Submitted by
anonymous
-
5 years ago
0
Date string - dd/mm/yyyy (...) dd/mm/yyyy
PCRE (PHP <7.3)
Lấy cả chuỗi dài
Submitted by
toanps
-
5 years ago
0
date string - error
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Palabras y números con acentos y tildes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Fecha en formato dd/mm/yyyy ---- dd-mm-yyyy ---- dd.mm.yyyy ---- dd/mm/yy ---- dd-mm-yy ---- dd.mm.yy
PCRE (PHP <7.3)
dd/mm/yyyy ---- dd-mm-yyyy ---- dd.mm.yyyy ---- dd/mm/yy ---- dd-mm-yy ---- dd.mm.yy
Submitted by
anonymous
-
5 years ago
0
Validar del 0 al infinito
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Limitar longitud de una palabra (solo numero)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
letras y números con restricción de 2 a 3 caracteres
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
statement matching
Python
no description available
Submitted by
anonymous
-
5 years ago
0
get da_cookies
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
English decimal degrees
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
fa-tag finder
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
exact word?
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
exact word?
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
tilak phishing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
tilak php tag ending filehacker
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Golang fmt verbs
Golang
Can be used to find all of the verbs in a golang format string. It will correctly extract verbs that would otherwise be specified by fmt.Sprintf, including their flags, width and precision. You can test it out on the fmt documentation, here: https://golang.org/pkg/fmt/
Submitted by
anonymous
-
5 years ago
1
...
331
332
333
334
335
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
data:
(?:
(?<mime>
[^
;,
]
+
)
;
?
)?
(?:
;charset=
(?<charset>
[^
;,
]
+
)
;
?
)?
(?:
;
(?<base64>
base64
)
;
?
)?
,
(?<content>
.
*
)
$
/
gm
Open regex in editor
Description
匹配data url
Submitted by
anonymous
-
5 years ago