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,060 community submitted regex patterns...
0
A name of a csv file in digits 6 chars long, 10 chars in total
PCRE2 (PHP >=7.3)
Find any flaws? ignore case = true global = false "123456.csv" assert true
Submitted by
anonymous
-
4 years ago
0
head <link> parser
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Master Spark URL validation
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Movie Titles
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
DocRefIdType
PCRE2 (PHP >=7.3)
Een unieke naam ter identificatie van het document.
Submitted by
M Meerkerk
-
4 years ago
(Last modified 4 years ago)
0
Phone number pseudo-check (checks the minimum number of digits)
PCRE2 (PHP >=7.3)
7 digits in this case
Submitted by
Hohanoff
-
4 years ago
0
Versioned Git Branch
PCRE2 (PHP >=7.3)
Branch versions of the from Number.Number.Number
Submitted by
anonymous
-
4 years ago
0
match secrets in config file with one exp with 3 groups
PCRE2 (PHP >=7.3)
no description available
Submitted by
dilnix
-
4 years ago
0
Time
PCRE2 (PHP >=7.3)
no description available
Submitted by
Andrea Russo
-
4 years ago
0
Youtube AdBlock Regexp
PCRE2 (PHP >=7.3)
From the whole list to single regexp with options
Submitted by
Harianto van Insulinde
-
4 years ago
(Last modified a year ago)
0
artifactory-request
Golang
no description available
Submitted by
Scott Barnes
-
4 years ago
0
artifactory-acess
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Check Integer Number
PCRE2 (PHP >=7.3)
Check Integer Number
Submitted by
anonymous
-
4 years ago
0
Date by Month Name
Golang
Best I could do for parsing dates spelled out as day, month name, year
Submitted by
anonymous
-
4 years ago
(Last modified a year ago)
0
Ejemplos - lookahead
PCRE2 (PHP >=7.3)
Ejemplo del uso de grupos lookahead
Submitted by
anonymous
-
4 years ago
0
Valid Dates
PCRE2 (PHP >=7.3)
e
Submitted by
anonymous
-
4 years ago
0
Ansible group that are not part of childre
PCRE2 (PHP >=7.3)
csc
Submitted by
anonymous
-
4 years ago
0
SKRAI
PCRE2 (PHP >=7.3)
haowei.ch
Submitted by
haowei.ch
-
4 years ago
0
convert currency
PCRE2 (PHP >=7.3)
remove currency symbol, remove commas
Submitted by
RWCorbett
-
4 years ago
0
Open ach
PCRE2 (PHP >=7.3)
8k realese
Submitted by
Cache
-
4 years ago
1
...
13
14
15
16
17
...
153
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