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,860 community submitted regex patterns...
0
subdomain catcher
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
subdomain catcher
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Add new line
ECMAScript (JavaScript)
Adds a new line at specified length and adjusts to the nearest space.
Submitted by
anonymous
-
6 years ago
0
Number Extract
ECMAScript (JavaScript)
Number extract test. Accepts integers, floats, portions and negatives.
Submitted by
anonymous
-
6 years ago
0
Filename.extention
ECMAScript (JavaScript)
One match
Submitted by
https://stackoverflow.com/questions/4549654/get-filename-from-url-using-regular-expressions-or-javascript
-
6 years ago
0
Dynamic Search Extra param
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Phone Number check format
ECMAScript (JavaScript)
Allows optional variation in spaces and dashes and brackets as well as international numbers
Submitted by
anonymous
-
6 years ago
0
FI-Email
ECMAScript (JavaScript)
Fleet Insight Email RegEx
Submitted by
anonymous
-
6 years ago
0
FI-Email2-final
ECMAScript (JavaScript)
Fleet Insight Email RegEx with dashes not allowed in domain relaxed teh 4 char limit on TLD
Submitted by
anonymous
-
6 years ago
0
CentraSite - match uddi keys
ECMAScript (JavaScript)
Matching CentraSite registry keys (uddi) Matches output with prefix (uddi:) Matches output without prefix does not match to service names and descriptions
Submitted by
d.fernandes
-
6 years ago
0
CentraSite servicenames and descriptions matching
ECMAScript (JavaScript)
work in progress.
Submitted by
d.fernandes
-
6 years ago
0
Find all JIRA H2 from Inline MD
ECMAScript (JavaScript)
Find all JIRA H2 from an Inline MD. In MD all # are considered H1 in JIRA Syntax In MD all ## are considered H2 in JIRA Syntax In MD all ### are considered H3 in JIRA Syntax In MD all #### are considered H4 in JIRA Syntax...
Submitted by
Joaquin Briceno
-
6 years ago
0
Create Connection
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Create Connection w Tests
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Mobile No Starts from number 20 or 0 digits and end with 12 digits number
ECMAScript (JavaScript)
Mobile No Starts from number 20 or 0 digits and end with 12 digits number
Submitted by
Venkata Sandeep
-
6 years ago
0
Capture upperCase
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
regex-puppet-v1
ECMAScript (JavaScript)
no description available
Submitted by
Wendy
-
6 years ago
0
Column Select Matcher
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
string-format-1
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
string-format-1
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
1
...
21
22
23
24
25
...
193
Community Library Entry
3
Regular Expression
Golang
`
^
(?P<scheme>
[^
:
\/
?#
]
+
)
:
(?:
\/\/
)?
(?:
(?:
(?P<login>
[^
:
]
+
)
(?:
:
(?P<password>
[^
@
]
+
)?
)?
@
)?
(?P<host>
[^
@
\/
?#:
]
*
)
(?:
:
(?P<port>
\d
+
)?
)?
)?
(?P<path>
[^
?#
]
*
)
(?:
\?
(?P<query>
[^
#
]
*
)
)?
(?:
#
(?P<fragment>
.
*
)
)?
`
gm
Open regex in editor
Description
Extract URL parts only named capturing groups
Submitted by
dixanms
-
3 years ago