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,300 community submitted regex patterns...
1
JavaScript Percentage Validation
ECMAScript (JavaScript)
no description available
Submitted by
rat
-
9 years ago
1
url
ECMAScript (JavaScript)
url
Submitted by
anonymous
-
9 years ago
1
Isolate URL in Iframe
ECMAScript (JavaScript)
Will select everything between the double quotes in an Iframe's src tag. Useful for retrieving/replacing the URL.
Submitted by
anonymous
-
9 years ago
1
fdwfe
ECMAScript (JavaScript)
few
Submitted by
few
-
9 years ago
4
find uncommented coffeescript console.logs
ECMAScript (JavaScript)
no description available
Submitted by
valiafetisov
-
9 years ago
1
chess move detector
ECMAScript (JavaScript)
Detects SYNTACTICALLY correct chess moves (i.e. it doesn't check whether the move itself is actually valid)
Submitted by
Terence Linnell
-
9 years ago
1
SmartTag Builder RegEx Tag Parsing
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
2
get file Extensions
ECMAScript (JavaScript)
var fileExtensionPatter = /\.([0-9a-z]+)(?=[?#])|(\.)(?:[\w]+)$/ var ma1 = 'css/global.css?v=1.2'.match(fileExtensionPatter)[0]; console.log(ma1); // return .css ...
Submitted by
Ahbap Aldırmaz
-
9 years ago
1
Lucene special characters
ECMAScript (JavaScript)
Capturing lucene special characters for escaping
Submitted by
Ole Martin
-
9 years ago
2
pdf url link
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
-1
DD/MM/YYYY
ECMAScript (JavaScript)
no description available
Submitted by
nehakadam
-
9 years ago
1
reg ex for http
ECMAScript (JavaScript)
https
Submitted by
anonymous
-
9 years ago
1
US Phone Number
ECMAScript (JavaScript)
The way I like it formatted
Submitted by
@mattbontrager
-
9 years ago
0
Split HTML string
ECMAScript (JavaScript)
Extracts HTML tags, HTML entities, alphanumeric words, and the rest.
Submitted by
Azmizar
-
9 years ago
1
Phone # Match
ECMAScript (JavaScript)
Matches phone #s (aaa) bbb-cccc aaa bbb cccc aaabbbcccc and such.
Submitted by
Zach
-
9 years ago
1
Invoice Number (District and Members reserve)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
Invoice Number
ECMAScript (JavaScript)
no description available
Submitted by
Sebastian Proske
-
9 years ago
2
file extension validation
ECMAScript (JavaScript)
no description available
Submitted by
Lisa
-
9 years ago
0
subdomain rewrite
ECMAScript (JavaScript)
no description available
Submitted by
mackenzie starr
-
9 years ago
1
Finale regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
...
280
281
282
283
284
...
315
Community Library Entry
35
Regular Expression
ECMAScript (JavaScript)
/
^
(
25
[
0
-
5
]
|
2
[
0
-
4
]
[
0
-
9
]
|
[
01
]
?
[
0
-
9
]
[
0
-
9
]
?
)
\.
(
25
[
0
-
5
]
|
2
[
0
-
4
]
[
0
-
9
]
|
[
01
]
?
[
0
-
9
]
[
0
-
9
]
?
)
\.
(
25
[
0
-
5
]
|
2
[
0
-
4
]
[
0
-
9
]
|
[
01
]
?
[
0
-
9
]
[
0
-
9
]
?
)
\.
(
25
[
0
-
5
]
|
2
[
0
-
4
]
[
0
-
9
]
|
[
01
]
?
[
0
-
9
]
[
0
-
9
]
?
)
$
/
Open regex in editor
Description
Validates IPv4 IP Address
Submitted by
krzysp
-
9 years ago