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 8,460 community submitted regex patterns...
0
Address Parser
ECMAScript (JavaScript)
This is used to parse Address text. TEST DATA: 39 w. 38th Street, 10th Floor, NY, NY 10018 39 w. 38th Street, NY, NY 10018
Submitted by
anonymous
-
6 years ago
0
Regex for mentions @username like twitter
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
cinecalidad
Python
no description available
Submitted by
anonymous
-
6 years ago
0
NUEVO
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Inchcape Browse Build Buy IIS URL Rewrite
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Date Format
ECMAScript (JavaScript)
This will check for a date using the format xx-xx-yyyy. The reason the first two groupings are labeled with 'xx' is because we can't be sure which is the month or the date as it will look for both formats and match true. This can also be used in conjunction with ?, ?, and ? to better search for spec...
Submitted by
anonymous
-
6 years ago
0
Month (Alpha) and Day
Python
Three letter or full text month name (including Sept for September) with or without upper case first letter for month followed by one or two digit day with no intervening white space. examples: Jan10 february29 Sept15 ...
Submitted by
anonymous
-
6 years ago
0
query.log
Python
no description available
Submitted by
anonymous
-
6 years ago
0
TX7470 and RX1
ECMAScript (JavaScript)
Working Regex
Submitted by
anonymous
-
6 years ago
0
объединение двух результатов регулярных выражений
Python
((?)(.|\n|\s)?(?=))|((?)(.|\n|\s)?(?=))
Submitted by
anonymous
-
6 years ago
0
Выделение текста в определенном теге без учета переноса строки
Python
(?)(.*) (?=) Выделение текста в определенном теге без учета переноса строки
Submitted by
anonymous
-
6 years ago
0
Replace CSV delimiter
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
vendor modernization
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Regexp HTML & CLosing
Python
no description available
Submitted by
anonymous
-
6 years ago
0
TX7470 and RX1
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
IPv4 matcher
Python
find all IPv4 addresses in text
Submitted by
anonymous
-
6 years ago
0
Cari semua nomor yang dua angka terakhirnya 77 & kode areanya 031 atau 0341
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Cari semua nomor yang kode areanya 021 atau 031
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Match html data (data-*) attributes
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Validation Password Alphanumeric with special character (optional)
ECMAScript (JavaScript)
Make validation password must alphanumeric but can add special character
Submitted by
anonymous
-
6 years ago
1
...
285
286
287
288
289
...
423
Community Library Entry
2
Regular Expression
ECMAScript (JavaScript)
/
\d
+
[
.,
]
?
(
\d
+
\s
*
k
?
|
x
{2,3}
)
(?=
\s
*
(
original
|
actual
|
highway
)?
\s
*
miles
)
|
(?<=
mile
(
s
|
agex
?
)
:
?
\s
*
(
is
|
~
)?
\s
*
)
\d
+
[
.,
]
?
(
\d
+
(
\s
*
k
)?
|
x
{2,3}
)
|
(
\d
+
(
\s
*
K
)
|
x
{2,3}
)
/
i
Open regex in editor
Description
no description available
Submitted by
anonymous
-
11 years ago