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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 3,640 community submitted regex patterns...
0
date
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
문자그대로찾기
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
ionic-cli doctor viewport-fix
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Professors parsing
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Phone number regex - area code
ECMAScript (JavaScript)
Capture 3 digit area code from phone number. Only capture valid NANP area code values. Ignore special characters and spaces.
Submitted by
anonymous
-
6 years ago
0
Phone number regex - phone number
ECMAScript (JavaScript)
Capture 10 digit numbers from input with text. Ignore special characters and spaces.
Submitted by
anonymous
-
6 years ago
0
List of build packages
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
List of builds
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Multiline comment removal for JS
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Single line comment removal for JS
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
0
Match html data (data-*) attributes
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
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
TX7470 and RX1
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
Replace CSV delimiter
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
TX7470 and RX1
ECMAScript (JavaScript)
Working Regex
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
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
1
...
114
115
116
117
118
...
182
import url image
4
Regular Expression
Python
r"
(?:
http:
\/\/
)
(
.
*
?
)
\/
(
.
+
?
)
(?:
\/
|
\?
|
\#
|
$
|
\n
)
\w
*
.
jpg
"
g
Open regex in editor
Description
import url image
Submitted by
bartimeys
-
9 years ago