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 12,660 community submitted regex patterns...
0
Match path
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
修复URL尾斜杠
ECMAScript (JavaScript)
兼容ios
Submitted by
anonymous
-
5 years ago
0
tilak filehacker
PCRE (PHP <7.3)
tilak filehacker
Submitted by
anonymous
-
5 years ago
0
RFC 5322
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Git merge theirs
PCRE (PHP <7.3)
Removes the merge conflict syntax and our content >>>>> our content... their content <<<<<< commit name...
Submitted by
anonymous
-
5 years ago
0
tilak phishing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
tilak phishing
PCRE (PHP <7.3)
tilak phishing
Submitted by
anonymous
-
5 years ago
0
mongo parsing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
tilak phishing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
keefe top partial clean
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
blake encoded shell
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
tilak phishing tough regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
content_type parser
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
more characters
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Regex_All_Language
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Get keywords and value from json.
PCRE (PHP <7.3)
Group 1: All properties without [ ], { } Group 2: Properties with class Group 3: Properties with array
Submitted by
anonymous
-
5 years ago
0
tilak php uploader
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Credit Card Numbers
PCRE (PHP <7.3)
Regex to detect credit card numbers. This regex was created for the purposes of detecting potentially compromised credentials for the purposes of information security and not to be used for malicious purposes. Based on data from https://www.freeformatter.com/credit-card-number-generator-validator....
Submitted by
anonymous
-
5 years ago
0
tilak php tag ending filehacker
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
tilak phishing
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
252
253
254
255
256
...
633
Community Library Entry
-1
Regular Expression
ECMAScript (JavaScript)
/
(?<=
(?:
^
|
[^
\\
]
)
(?:
\\\\
)*
)
(
(
[
`'"
]
)
(
.
*
?
(?:
[^
\\
]
(
\\\\
)*
|
$
)
(
\2
|
$
)
)
)
/
g
Open regex in editor
Description
匹配带引号内容,被引号包含的内容
结构(
$x
)
((前引号)(内容)(后引号))
整体内容(包含引号)
前引号
内容
后引号
默认匹配
[`'"]
引号,可以在表达式的匹配2中更改
消除转义字符对引号的影响
单个有效引号会直接匹配至末尾,若不想匹配至末尾可以移除表达式尾部的
$
Submitted by
诶!你的尾巴掉了
-
a year ago
(Last modified a year ago)