Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Social
Join the Discord community!
Follow me on twitter!
Send me an email
Donate
Donate
Donate through Paypal
Become a Github Sponsor
Info
Info
Find out what's new!
RegEx101 Wiki
Report bugs or make suggestions
What's new?
Loading content...
Close
Regex Editor
Regex Editor
Community Patterns
Community Patterns
Account
Account
Regex Quiz
Regex Quiz
Settings
Settings
Live Help
Live Help
Get help on Discord
Get help on IRC
Order By
Most Recent
Highest Score
Lowest Score
Most upvotes
Most downvotes
Filter by Flavor
PCRE2 (PHP >=7.3)
PCRE (PHP <7.3)
ECMAScript (JavaScript)
Python
Golang
Java 8
.NET (C#)
Rust
Sponsors
Community Patterns
Search among 5,640 community submitted regex patterns...
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Regex validate PIN code (Solution www.codewars.com)
ECMAScript (JavaScript)
Regex validate PIN code (Solution www.codewars.com) https://www.codewars.com/kata/regex-validate-pin-code/javascript
Submitted by
anonymous
-
4 years ago
2019-08-17 16:56
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
点运算符 .
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
2019-08-18 12:42
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Find a word (Case-Insensitive)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
2019-08-19 16:56
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Date Validation - Including Leap Year (mm/dd/yyyy)
ECMAScript (JavaScript)
This regex validates all dates between 01/01/1900 and 12/31/2099, including leap-year validation. It follows a mm/dd/yyyy format, and enforces two-digit month/year formats.
Submitted by
anonymous
-
4 years ago
2019-08-19 20:55
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Cusip
Python
no description available
Submitted by
anonymous
-
4 years ago
2019-08-20 08:27
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Sedol
Python
no description available
Submitted by
anonymous
-
4 years ago
2019-08-20 08:28
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Isin
Python
no description available
Submitted by
anonymous
-
4 years ago
2019-08-20 08:30
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
regex for log format for logging for sorting xml's
Python
no description available
Submitted by
anonymous
-
4 years ago
2019-08-20 11:40
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
String after $
ECMAScript (JavaScript)
Selects the string after the $ sign
Submitted by
anonymous
-
4 years ago
2019-08-20 17:28
(Last modified 2 years ago)
2021-07-21 16:43
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Get document.cookie value by name
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
2019-08-21 19:11
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
mayfield 2
Python
no description available
Submitted by
anonymous
-
4 years ago
2019-08-22 19:45
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
riley 1
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
2019-08-22 20:49
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
riley 2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
2019-08-22 20:52
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
riley 3
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
2019-08-22 21:01
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
mayfield 12
Python
no description available
Submitted by
anonymous
-
4 years ago
2019-08-26 02:00
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
VBA Comment
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
2019-08-25 17:49
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
60fps fixtures
Python
no description available
Submitted by
anonymous
-
4 years ago
2019-08-25 18:42
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
60fps m3u8
Python
no description available
Submitted by
anonymous
-
4 years ago
2019-08-25 19:11
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
AC800s Modem testing
Python
Still not quite right
Submitted by
anonymous
-
4 years ago
2019-08-25 21:57
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
AC800s from forum
Python
no description available
Submitted by
anonymous
-
4 years ago
2019-08-25 22:00
1
...
252
253
254
255
256
257
258
...
282
find pattern in filename product name, version, build and extension
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Regular Expression
Python
r"
(?P<product_name>
^.
*
)
[
-
]
(
(?P<ver>
\*
|
\d
+
(
\.
\d
+
){0,2}
(
\.\*
)?
)
)
[
-
]
(?P<build>
.\d
*
)
[
.
]
(?P<ext>
bin
|
rpm
)
$
"
gm
Open regex in editor
Description
Loading markdown...
Submitted by
rsim
-
2 years ago
2021-06-30 07:22