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 3,460 community submitted regex patterns...
0
Password of Length 8-16
ECMAScript (JavaScript)
Minimum one capital, one special, one digit, no whitespace
Submitted by
anonymous
-
6 years ago
0
Email Regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
extract <a> tags from an html page
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Time
ECMAScript (JavaScript)
hh:mm 24
Submitted by
anonymous
-
6 years ago
0
regex to check string contains two hyphens
ECMAScript (JavaScript)
This should work: ^([a-zA-Z0-9]-[a-zA-Z0-9])+$ Also if you want to have exactly 135 hyphens: ^([a-zA-Z0-9]-[a-zA-Z0-9]){135}$...
Submitted by
anonymous
-
6 years ago
0
MC
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
npm expression parser using javascript engine.
ECMAScript (JavaScript)
This is a npm expression parser that can be used, for instance, to create shims. This RegEx has been created for spypkg module.
Submitted by
marckassay
-
6 years ago
0
RegEx vardump
ECMAScript (JavaScript)
Регулярка для стилизации вардампа для браузерного расширений DViewer
Submitted by
anonymous
-
6 years ago
0
Financial for HA
ECMAScript (JavaScript)
Finds the Financial line of the Hazard Analysis.
Submitted by
anonymous
-
6 years ago
0
Legal/Regulatory for HA
ECMAScript (JavaScript)
Finds the Legal/Regulatory line of the Hazard Analysis.
Submitted by
anonymous
-
6 years ago
0
Data Integrity for HA
ECMAScript (JavaScript)
Finds the Data Integrity line of the Hazard Analysis.
Submitted by
anonymous
-
6 years ago
0
Patient Safety for HA
ECMAScript (JavaScript)
Finds the Patient Safety line of the Hazard Analysis.
Submitted by
anonymous
-
6 years ago
0
CyberSecurity/Information Security for HA
ECMAScript (JavaScript)
Finds the CyberSecurity/Information Security line of the Hazard Analysis.
Submitted by
anonymous
-
6 years ago
0
test
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
HA template search
ECMAScript (JavaScript)
Searches for the template setting.
Submitted by
anonymous
-
6 years ago
0
start and end with same vowel
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Test string contains Instapage URLs
ECMAScript (JavaScript)
Purpose List of Instapage URLs for testing against Todo Add www urls
Submitted by
anonymous
-
6 years ago
0
is absolute url
ECMAScript (JavaScript)
found in https://stackoverflow.com/a/14720951/10715454 check string for absolute url (with domain and such) true example.com...
Submitted by
https://stackoverflow.com/users/114251/arun-p-johny
-
6 years ago
0
金额校验
ECMAScript (JavaScript)
11位正整数,两位小数
Submitted by
anonymous
-
6 years ago
0
中文校验
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
1
...
113
114
115
116
117
...
173
Community Library Entry
-2
Regular Expression
Python
r"
(?:
[^
"
\\
]
|
(?:
\\\\
|
\\
"
)+
)
(
"
)
"
gmi
Open regex in editor
Description
no description available
Submitted by
anonymous
-
9 years ago