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 2,120 community submitted regex patterns...
0
С НДС Newline
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Chess
Python
no description available
Submitted by
anonymous
-
6 years ago
0
UNC path
Python
\\[[domain;]username[:password]@]hostname\share[\/]path
Submitted by
anonymous
-
6 years ago
0
SMB path
Python
smb://[[domain;]username[:password]@]hostname[:]/share[\/]path
Submitted by
anonymous
-
6 years ago
0
Local path
Python
C:/path \\?\C:[\/]path /path ~/path
Submitted by
anonymous
-
6 years ago
0
oqun.jjbkk.cn
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Parsing file metadata
Python
no description available
Submitted by
anonymous
-
6 years ago
0
fix secacc in diva
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Parse Excel Autopath case numbers
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Matches the prefix at the beginning of string or after a slash
Python
Regex for extracting display_id from the URL
Submitted by
anonymous
-
6 years ago
0
Extrair data por extenso
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Code du travail articles
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Spaces around punctuation
Python
no description available
Submitted by
anonymous
-
6 years ago
0
csdetail
Python
no description available
Submitted by
anonymous
-
6 years ago
0
thue
Python
no description available
Submitted by
anonymous
-
6 years ago
0
amf signals
Python
no description available
Submitted by
anonymous
-
6 years ago
0
The Phrase: تابعه فلان between square brackets.
Python
every part of the phrase can be replaced
Submitted by
anonymous
-
6 years ago
0
aaa
Python
aaa
Submitted by
anonymous
-
6 years ago
0
prima
Python
(?i)^https?://(www\.)?interphone(\.\w+)+(:[\d]+)?/(\w+)/\w{2}-(?!it{1})
Submitted by
anonymous
-
6 years ago
0
Synop
Python
no description available
Submitted by
anonymous
-
6 years ago
1
...
10
11
12
13
14
...
106
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