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 340 community submitted regex patterns...
0
GO Docker tag
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
Address
Golang
for the demo 2019/09/27
Submitted by
anonymous
-
5 years ago
0
More complete UK address from psql
Golang
for demo 2019/09/30
Submitted by
anonymous
-
5 years ago
0
UK address extract the Postcode
Golang
for demo 2019/09/30
Submitted by
anonymous
-
5 years ago
0
Golang Google UUID Validation
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
[Help] - need full match of a non valid comment blocks
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
Report url regex
Golang
/ui_tests/master/28c6f611
Submitted by
anonymous
-
5 years ago
0
mongo db email validation
Golang
email validation based on the restrictions for entering email adresses into a mongo db email field.
Submitted by
levire.com
-
5 years ago
0
Remove whiteSpace and char
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
my
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
lkker-cos
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
Simple measurement amount and unit
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
ListOfSourcesSeparatedBySpaces
.NET 7.0 (C#)
A list of sources like accepted by the CSP:frame-ancestors header, plus the keywords of the X-Frame-Options header for some backward compatibility
Submitted by
anonymous
-
5 years ago
(Last modified 6 months ago)
0
ISO 8601 Datetime Validation
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
Boucle d'or
Golang
Attrape la famille ours
Submitted by
anonymous
-
5 years ago
0
KDE_Converter_Runner_Regex
Golang
WIP
Submitted by
anonymous
-
5 years ago
0
Domain validation regex suitable for user input
Golang
This regexp can be used to validate domain names in Golang. While it cannot enforce the 253 character limit (with optional trailing period not included) that can be easily done with a len(domain) <= 253 check. This can be used as-is in other languages, even with RE2 regex engine. Non-capturing grou...
Submitted by
anonymous
-
5 years ago
0
test
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
emojis
Golang
no description available
Submitted by
anonymous
-
4 years ago
0
Golang fmt verbs
Golang
Can be used to find all of the verbs in a golang format string. It will correctly extract verbs that would otherwise be specified by fmt.Sprintf, including their flags, width and precision. You can test it out on the fmt documentation, here: https://golang.org/pkg/fmt/
Submitted by
anonymous
-
5 years ago
1
...
6
7
8
9
10
...
17
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
^
(?=
(?<http>
(?:
https
?
:
\/\/
){1}
(?:
www
\.
)?
)?
)
(?
(?=
\k<http>
?
(?<ipaddr>
(?:
\d
{1,3}
\.
){3}
\d
{1,3}
(?:
\:
\d
{1,5}
)?
)
)
\k<http>
?
\k<ipaddr>
(?:
\.
[
\w
]
{1,9}
)?
|
\k<http>
(?:
[
\w
]
\.
?
){1,255}
\.
[
\w
]
{1,9}
)
(?:
\/
.
*
)?
$
"
gm
Open regex in editor
Description
Can be used to validate on URL's.
Submitted by
anonymous
-
a year ago