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,760 community submitted regex patterns...
0
Remove <style>,<script> and inline styles from HTML
ECMAScript (JavaScript)
Easy remove any , tag and inline styles for clean code
Submitted by
Patryk Padus
-
7 years ago
(Last modified a year ago)
0
utf-8 compliant Email Regex in javascript
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
converting mocha `assert.strictEqual()` to jest `expect().toEqual()`
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Match <a> tag with no/invalid closing tag
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Match full/missing closing tag of <a>
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
regCheck
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Javascript replace export function to export =>
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
mvr wip
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
mvr wip lineage
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Force a CIDR block of 10.###.0.0
ECMAScript (JavaScript)
This will force a cidr block in the 10.x.0.0 range. Very useful if you restrict your cidr block to 10.x.0.0 in cloudformation (AWS).
Submitted by
Alex Dixon
-
7 years ago
0
Not Full Amount with kilo, million, billion
ECMAScript (JavaScript)
Valid: 0.00 123.12k 123,123,123.12m 123,123,123,123.00b ...
Submitted by
Benji W J YANG
-
7 years ago
0
AQF branch
ECMAScript (JavaScript)
Match the format of a standart aqf branch name
Submitted by
anonymous
-
7 years ago
0
PhoneNumber
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
WGS84 Validation
ECMAScript (JavaScript)
RE to validate the format of a WGS84 datum coordinates string.
Submitted by
anonymous
-
7 years ago
0
js functions
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Soubisha Password
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Gateway plugins filename
Golang
This regular expression is used to validated the filename of Gateway plugins.
Submitted by
Julien BREUX
-
7 years ago
0
heat - variable
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
test
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Parse fonction name
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
1
...
16
17
18
19
20
...
188
Community Library Entry
2
Regular Expression
Python
r"
[
\w
'
-
.
]
+
\w
|
[
\w
'-
]
+
\s
*
"
Open regex in editor
Description
Matches words without external punctuation but with internal punctuation.
Submitted by
anonymous
-
9 years ago