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,860 community submitted regex patterns...
0
TatraBanka AMOUNT_VALUE
Java 8
some descriptoin
Submitted by
Inez van Acker, Robert Schulz
-
2 years ago
(Last modified a year ago)
0
Simple reduce string words
ECMAScript (JavaScript)
ECMAScript regex to try reduce words
Submitted by
Alan Ferreira
-
2 years ago
0
vue sfc script tag
ECMAScript (JavaScript)
Regexp to match vue sfc script tag
Submitted by
YuTengjing
-
2 years ago
0
minecraft custom chat parser
ECMAScript (JavaScript)
basically parses Minecraft CUSTOM chat messages. it can parse: [rank] username: message [rank] username > message [rank] username › message [rank] username » message
Submitted by
anonymous
-
2 years ago
0
Date String ISO Pattern
Golang
Date String ISO Pattern matcher
Submitted by
Lucas Morais
-
2 years ago
0
Validación de Facturas Fiscales Paraguay
ECMAScript (JavaScript)
Sucursal - Expedición - Número de Comprobante
Submitted by
anonymous
-
2 years ago
0
Decision Table
Java 8
Rules engine CSV Decision Table expression
Submitted by
Vincent Wautelet
-
2 years ago
(Last modified 2 years ago)
0
Only numbers and length under 10
ECMAScript (JavaScript)
Only numbers and length under 10
Submitted by
anonymous
-
2 years ago
0
Only numbers and length 9
ECMAScript (JavaScript)
Only numbers and length 9
Submitted by
anonymous
-
2 years ago
0
Checking if it's an hubspot url
ECMAScript (JavaScript)
This Regex checks if it's a valid hubspot domain
Submitted by
anonymous
-
2 years ago
0
Match PWSID
ECMAScript (JavaScript)
Match PWSID
Submitted by
Matt Horrell
-
2 years ago
(Last modified 7 months ago)
0
Find validation name and name inside parentheses
ECMAScript (JavaScript)
Find validation name and name inside parentheses
Submitted by
nghilq
-
2 years ago
0
Find Japanese
ECMAScript (JavaScript)
Find Japanese
Submitted by
nghilq
-
2 years ago
0
Email
ECMAScript (JavaScript)
Email
Submitted by
anonymous
-
2 years ago
0
Remove HTML tags & attributes from text
ECMAScript (JavaScript)
Removes html tags (including attributes) from text
Submitted by
Stino
-
2 years ago
0
Remove Parentheses
ECMAScript (JavaScript)
Codewars kata 6 kyu , about Regular Expression JavaScript, help meeeh
Submitted by
anonymous
-
2 years ago
0
UK Phone Number
ECMAScript (JavaScript)
Check for varied prefixes, followed by a suffix of exactly 9 digits
Submitted by
anonymous
-
2 years ago
0
Find an SVG constructed in javascript nuxt
ECMAScript (JavaScript)
Find an SVG constructed in javascript nuxt
Submitted by
Ray
-
2 years ago
0
Link Matcher v1
Java 8
The link matcher regex currently matches the most common types of links. *Removed other links
Submitted by
IkeVoodoo
-
2 years ago
(Last modified 2 years ago)
0
Match valid US phone numbers
ECMAScript (JavaScript)
This regex matches Valid USA phone numbers
Submitted by
anonymous
-
2 years ago
1
...
182
183
184
185
186
...
193
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)