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,840 community submitted regex patterns...
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Image Candidate String
ECMAScript (JavaScript)
no description available
Submitted by
J. Porter
-
8 years ago
2016-06-08 10:32
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
non-word chars and underscore
ECMAScript (JavaScript)
no description available
Submitted by
webDevRich
-
8 years ago
2016-06-08 14:39
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
IPv4 list comma separated
ECMAScript (JavaScript)
Matches IPv4 address list separated by comma (,). Does not match an incomplete list (e.g. 192.168.1.0,)
Submitted by
anonymous
-
8 years ago
2016-06-09 14:40
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Hebrew pronunciation
ECMAScript (JavaScript)
no description available
Submitted by
Michael Sharpe
-
7 years ago
2016-06-09 19:50
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
MultiTag Best Regex
ECMAScript (JavaScript)
Now include regex inside {{ }}
Submitted by
Ricardo Feitoza
-
7 years ago
2016-06-11 21:04
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Match only ONE letter after a number
ECMAScript (JavaScript)
no description available
Submitted by
padre629
-
7 years ago
2016-06-13 15:41
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Complex Javascript Regex (ASCII Only)
ECMAScript (JavaScript)
no description available
Submitted by
datatypevoid
-
7 years ago
2016-06-13 19:55
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Complex Javascript Regex (With Non ASCII Support)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
2016-06-13 20:02
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
V8 Stack
ECMAScript (JavaScript)
Parses the V8 StackFrames
Submitted by
anonymous
-
7 years ago
2016-06-14 16:49
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
ngResource
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
2016-06-16 05:43
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
SIV - French registration (licence) plates
ECMAScript (JavaScript)
registration plates of France in SIV format
Submitted by
Qwertiy
-
7 years ago
2016-06-16 10:14
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
ad google apps for business domain regexp
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
2016-06-16 13:10
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
defmodule regex
ECMAScript (JavaScript)
no description available
Submitted by
Jakub Hajto
-
7 years ago
2016-06-17 11:35
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Functions, macros and protocols
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
2016-06-17 13:36
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
[A-Za-z0-9-]+
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
2016-06-19 09:08
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Separate by double quotes
ECMAScript (JavaScript)
String that may begin or end with spaces, and contains double-quoted text, separated by a number of spaces
Submitted by
Rafael Sanchez
-
7 years ago
2016-06-20 07:24
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
java
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
2016-06-20 07:55
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Lookbehind - Javascript
ECMAScript (JavaScript)
no description available
Submitted by
Matheus Siqueira
-
7 years ago
2016-06-20 18:47
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Lookbehind - Javascript
ECMAScript (JavaScript)
POsitive lookbehind javascript.
Submitted by
Matheus de Sousa Siqueira - (matheussiqueira.ec@gmail.com)
-
7 years ago
2016-06-20 18:51
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Split Java Stack Traces
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
2016-06-21 11:36
1
...
78
79
80
81
82
83
84
...
292
git url dissecting
1
1 upvotes, 0 downvotes (score 20.7%) (You must be signed in to vote)
Regular Expression
PCRE2 (PHP >=7.3)
/
^
(
(?<protocol>
https
?
|
ssh
|
git
|
ftps
?
)
:
\/\/
)?
(
(?<user>
[^
\/
@
]
+
)
@
)?
(?<host>
[^
\/
:
]
+
)
[
\/
:
]
(?<port>
[^
\/
:
]
+
)
\/
(?<path>
.
+
\/
)?
(?<repo>
.
+
?
)
(?<suffix>
\.
git
[
\/
]
?
)?
$
/
Open regex in editor
Description
Loading markdown...
Submitted by
anonymous
-
3 months ago
2023-09-06 16:21