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,740 community submitted regex patterns...
0
Tel
ECMAScript (JavaScript)
Válida números de telefone
Submitted by
Mateus
-
2 years ago
0
[NOT WORKING] css/scss filenames but not css-modules (*.module.<extension>)
ECMAScript (JavaScript)
Get file paths .css or .scss but not .module.css or .module.scss
Submitted by
krutoo
-
2 years ago
0
Get h1-6 tag
.NET 7.0 (C#)
(.*?)
Submitted by
OlegBel
-
2 years ago
0
Mail address validation
ECMAScript (JavaScript)
Validates mail addresses
Submitted by
Sjoerd de Vries
-
2 years ago
0
Password validation
ECMAScript (JavaScript)
Regex used for password validation. A password match the following: At least 8 characters in length Minimum of 1 lower-case character Minimum of 1 upper-case character Minimum of 1 digit Minimum of 1 special character (non-whitespace)
Submitted by
Sjoerd de Vries
-
2 years ago
0
placeables
ECMAScript (JavaScript)
placeables
Submitted by
anonymous
-
2 years ago
0
(\d+(\.\d)?\,\d+(\.\d)?\|){0,2}(\d+(\.\d)?,\d+(\.\d)?)
ECMAScript (JavaScript)
(\d+(\.\d)?\,\d+(\.\d)?\|){0,2}(\d+(\.\d)?,\d+(\.\d)?)
Submitted by
anonymous
-
2 years ago
0
VidID: YouTube
ECMAScript (JavaScript)
ID of YouTube video with provider flag
Submitted by
tomByrer
-
2 years ago
(Last modified 2 years ago)
0
nick anme
.NET 7.0 (C#)
mvp
Submitted by
doppler
-
2 years ago
(Last modified 2 years ago)
0
Pass/Fail
ECMAScript (JavaScript)
gaming pass fail shortcut
Submitted by
Steve Muchow
-
2 years ago
(Last modified 2 years ago)
0
https://rextester.com/JFUKE76014
.NET 7.0 (C#)
0x9d9b6f05d7b72588f83cc60fda4286ba45d13924 Nonce 6324 Rash 0xa964e1ee4c92c25f47392f67b735095304631089b5f2173825b7e93f49f08d57 Bloco 3391586 Commit fb5aa46...
Submitted by
0x9d9b6f05d7b72588f83cc60fda4286ba45d13924
-
2 years ago
0
RE2 match of APRS-IS header information
Golang
This re2 (using Go in my case) matches the APRS-IS header. The format of the APRS-IS packet is TNC2 standard: SOURCE>DESTINATION,PATH:PACKET ...
Submitted by
Jack Hamm (jack@wv6l.net)
-
2 years ago
0
Golang Get variables In Js
Golang
To get
Submitted by
anonymous
-
2 years ago
0
Match valid US phone numbers
ECMAScript (JavaScript)
This regex matches Valid USA phone numbers
Submitted by
anonymous
-
2 years ago
2
Ultimate markdown parser
ECMAScript (JavaScript)
In order to neasting parsing work you need to run this regex multiple times on same target.
Submitted by
Mateusz Budzisz
-
2 years ago
1
UNC Path Component Validation - Sharename
.NET 7.0 (C#)
There are specific requirements for the different components of a UNC path. While it's possible to try and validate the entire UNC path in one go, you quite often end up needing to break the path down anyway unless simply handing it off to some other library (in which case they should be providing v...
Submitted by
thejamesdecker
-
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
UK Phone Number
ECMAScript (JavaScript)
Check for varied prefixes, followed by a suffix of exactly 9 digits
Submitted by
anonymous
-
2 years ago
2
Replace sub-strings in string
.NET 7.0 (C#)
Replace sub-strings in string
Submitted by
anonymous
-
2 years ago
0
Remove Parentheses
ECMAScript (JavaScript)
Codewars kata 6 kyu , about Regular Expression JavaScript, help meeeh
Submitted by
anonymous
-
2 years ago
1
...
15
16
17
18
19
...
187
Community Library Entry
0
Regular Expression
Python
r"
^\s
{7}
(
[
-A
]
?
\d
+
)
\s
+
(
(
.
|
\n
)*
?
)
\n^\s
{24}
(
[
A
-
Z
]
{0,2}
\d
{3}
(
\.
\d
+
)?
(
\s
(
\w
+
)
)?
)
"
gm
Open regex in editor
Description
Matches entries in a library catalogue.
Submitted by
anonymous
-
a year ago