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 2,960 community submitted regex patterns...
0
URL validation regexp
PCRE2 (PHP >=7.3)
Regexp to check URL validity and extract subparts. Allows HTTP / HTTPs / sFTP / FTP / FTPs protocols Allows HTTP / FTP authentication included in URL Allows internal domain names Allow non default port protols...
Submitted by
Damien Cuvillier
-
3 years ago
0
SHORT CODES
PCRE2 (PHP >=7.3)
Para obtener la longitud de marcaciones cortas con longitud de 3 a 6 digitos
Submitted by
anonymous
-
3 years ago
0
豆瓣图书信息匹配/Regex for douban books
Golang
提取书籍信息 get book information link like:https://book.douban.com/subject/35049755/
Submitted by
anonymous
-
3 years ago
0
turns lines into html paragraphs
PCRE2 (PHP >=7.3)
mturns lines into html paragraphs
Submitted by
Mateus Junior
-
3 years ago
0
css font-face url
PCRE2 (PHP >=7.3)
found font-face url in sty;e.css
Submitted by
anonymous
-
3 years ago
0
Find actual year in string
PCRE2 (PHP >=7.3)
Years: 1970-2029
Submitted by
Ant-kul
-
3 years ago
0
Mosmix Data
PCRE2 (PHP >=7.3)
Mosmix Weatherstations Data Id, Name, Lat, Lon
Submitted by
Stefc
-
3 years ago
0
getCodeJav
PCRE2 (PHP >=7.3)
Regex get code jav
Submitted by
Denss
-
3 years ago
0
IP Tables Rules
PCRE2 (PHP >=7.3)
Match IP Tables Rules for logging
Submitted by
Proffalken
-
3 years ago
0
Hello World | Regex Number JS
PCRE2 (PHP >=7.3)
Regex number
Submitted by
mfilype
-
3 years ago
0
Find JSON key with any value except the values given
PCRE2 (PHP >=7.3)
Use this regular expression if you search through a big JSON file and you are looking whether a specific key holds any value different than the ones given.
Submitted by
Sebastian Zander
-
3 years ago
(Last modified 3 years ago)
0
Match comments
PCRE2 (PHP >=7.3)
This will match the comments. Example: # hi print "Hello, World!" # hi will be...
Submitted by
Fmbalbuena
-
3 years ago
0
Date of birth
PCRE2 (PHP >=7.3)
This regex takes care of all birthdate with different formats. This is built for US customers
Submitted by
Rushabh shah
-
3 years ago
0
emailaddress
PCRE2 (PHP >=7.3)
accepts common emails even wit first part with a point or a score or underscore .-_
Submitted by
anonymous
-
3 years ago
0
eliminate repeated words
PCRE2 (PHP >=7.3)
mark a grup and then look if it comes after and make a substitution by only one
Submitted by
anonymous
-
3 years ago
0
Ukrainian IBAN
PCRE2 (PHP >=7.3)
Regex for UA IBAN
Submitted by
Viacheslav Kozachok
-
3 years ago
0
Nintendo DS Family
PCRE2 (PHP >=7.3)
Never mind of what Nintendo DS console version you have! This regex cover you up!
Submitted by
anonymous
-
3 years ago
0
Suplementos de Calcio
PCRE2 (PHP >=7.3)
Suplementos de Calcio
Submitted by
anonymous
-
3 years ago
0
Hipovitaminosis
PCRE2 (PHP >=7.3)
Hipovitaminosis
Submitted by
anonymous
-
3 years ago
0
Insuficiencia hepática
PCRE2 (PHP >=7.3)
Insuficiencia hepática
Submitted by
slopez
-
3 years ago
1
...
102
103
104
105
106
...
148
Community Library Entry
0
Regular Expression
Golang
`
(
(
(
(?P<Keys>
dword
|
word
|
byte
|
int
)
[
\n\t
]
+
)
(
(?P<Names>
[
a
-
zA
-
Z0
-
9
_
\-\$
]
+
)
)
)
(
(
\[
(?P<Range>
[
a
-
zA
-
Z0
-
9
\t\n
]
+
)
\]
[
\t\n
]
+
)
|
(?P<Pointer>
[
*
\t\n
]
+
)
|)
(
(
=
[
\n\t
]
+
)
(
[
&*"a
-
zA
-
Z0
-
9
]
+
)
)
(
;
)
)
|
(
(
(?P<Others>
int
|
string
|
word
)
[
\t\n
]
+
)
(
[
a
-
zA
-
Z0
-
9
\n\t
]
+
)
(
;
)
)
`
g
Open regex in editor
Description
no description available
Submitted by
cemares
-
7 years ago