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
Parse fields of SQL Dump
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Command with arguments
ECMAScript (JavaScript)
This will parse command with/without arguments like: command --arg1=string --arg2=string `
Submitted by
anonymous
-
6 years ago
0
js email
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
printer messages parser
ECMAScript (JavaScript)
prase messages from printers
Submitted by
anonymous
-
6 years ago
0
phone
ECMAScript (JavaScript)
My own regex for telephone number for my task
Submitted by
anonymous
-
6 years ago
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
1
...
113
114
115
116
117
...
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