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,780 community submitted regex patterns...
0
Match CSS Variables
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Discord js code markup parser
ECMAScript (JavaScript)
no description available
Submitted by
sorashi
-
7 years ago
0
Foodie2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Get Host from DNSNAMES.ORA
ECMAScript (JavaScript)
This expression gives me the hostname for a given schema
Submitted by
anonymous
-
7 years ago
0
Њ специјални случајеви >> НЈ
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
split
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
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
1
...
102
103
104
105
106
...
189
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
(?<!
^
)
(?=
[
A
-
Z
]
[
a
-
z
]
)
|
(?<=
[
a
-
z
]
)
(?=
[
A
-
Z
]
)
"
g
Open regex in editor
Description
Splits camel-case string and preserves acronyms
Submitted by
Tyler S.
-
a year ago