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 6,200 community submitted regex patterns...
0
Secure Phone Number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Rule34
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
highlighting with punctuation
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Non-parseFloat-able
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
ParseFloat-able
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Valid number format for input field (string)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Spanish number plate with hyphens (EU format)
ECMAScript (JavaScript)
Example: 1234-BBB
Submitted by
anonymous
-
5 years ago
0
useTranslation
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Normal Amounts
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Find Capture groups in RegExp Source
ECMAScript (JavaScript)
Find all capture groups in RegExp source. All forms of None-capture groups are ignored. name of named capture group will be captured by the name "name" which is group[2].
Submitted by
anonymous
-
5 years ago
0
saily find coords
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
no double spaces / leading / trailing spaces
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Code couleur en hexadécimal
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Code couleur en hexadécimal
ECMAScript (JavaScript)
#(([0-9A-F]{6})|([0-9a-f]{6}))
Submitted by
anonymous
-
5 years ago
0
Tests string if it is a valid number with or without its unit
ECMAScript (JavaScript)
Useful when working with css
Submitted by
anonymous
-
5 years ago
0
Captures only numbers with 2+ digits and excluding prefix 0's
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Us phone regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Saas Path Parser
ECMAScript (JavaScript)
Analyze a text looking for a Saas path (in CFE context). It should identify following groups: saasPrefix sicTenant Id sicTenantOrContainerId (If containerId is not present, SicTenant will come here)...
Submitted by
Xvi
-
5 years ago
0
Check & parse Azure Blob Storage URL for CFE
ECMAScript (JavaScript)
Check and parses a URL to identify following segments: azurePrefix : fix segment identifying the origin of the message. It includes Azure Blob Storage account name. containerId: Identifier of the container. It'll allow to find Sic & tenant to drive the to the right place. inDir : Internal use. path:...
Submitted by
anonymous
-
5 years ago
0
移除小程序云函数栈日志中的无效行
ECMAScript (JavaScript)
使其更已读
Submitted by
anonymous
-
5 years ago
1
...
171
172
173
174
175
...
310
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
(
(
\+
7
|
7
|
8
)
(
(
\-\(
[
0
-
9
]
{3}
\)\-
)
|
(
\(
[
0
-
9
]
{3}
\)
)
|
(
\s
[
0
-
9
]
{3}
\s
)
|
(
\-
[
0
-
9
]
{3}
\-
)
|
[
0
-
9
]
{3}
)
[
0
-
9
]
{3}
(
(
\s
|
\-
)?
)
[
0
-
9
]
{2}
(
(
\s
|
\-
)?
)
(
[
0
-
9
]
{2}
)
)
$
/
Open regex in editor
Description
Работает с форматами +7, 7, 8 Варианты валидации любые.
Submitted by
anonymous
-
a year ago