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
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 7.0 (C#)
Rust
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 320 community submitted regex patterns...
0
Valid email address in Go
Golang
A regexp to validate an email address according to https://html.spec.whatwg.org/#valid-e-mail-address . Note that the backslash in the name part of the regexp on that site is there to escape the forward slash, which is not needed in Go. EDIT: This is newer than the version at https://regex101.com/l...
Submitted by
markus@maragu.dk
-
3 years ago
1
Valid email regexp in Go
Golang
A regexp to validate an email address according to https://html.spec.whatwg.org/#valid-e-mail-address . Note that the backslash in the name part of the regexp on that site is there to escape the forward slash, which is not needed in Go.
Submitted by
markus@maragu.dk
-
3 years ago
-1
rtrtr
Golang
gtgtg
Submitted by
anonymous
-
3 years ago
0
Filter 4, 10 digits and email
Golang
Test
Submitted by
gert rohde
-
3 years ago
0
Semantic Versioning
Golang
Semantic versioning regex
Submitted by
anton-yurchenko
-
3 years ago
0
Log Data Parsing
Golang
parse log data
Submitted by
anonymous
-
3 years ago
0
Detecting CJK Chars in Golang!
Golang
Detecting CJK Chars in Golang!
Submitted by
anonymous
-
3 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
-
3 years ago
(Last modified a year ago)
0
artifactory-request
Golang
no description available
Submitted by
Scott Barnes
-
4 years ago
0
Regex for email searches
Golang
no description available
Submitted by
Manuel
-
4 years ago
0
ISO8601-utc-time
Golang
no description available
Submitted by
johndunne
-
4 years ago
0
ISO8601-duration
Golang
no description available
Submitted by
johndunne
-
4 years ago
0
MYISAM
Golang
no description available
Submitted by
anonymous
-
4 years ago
0
LONG BLOB
Golang
no description available
Submitted by
anonymous
-
4 years ago
0
CHARACTER SET | COLLATE
Golang
no description available
Submitted by
anonymous
-
4 years ago
0
ADD CHANGE MODIFY
Golang
no description available
Submitted by
anonymous
-
4 years ago
1
^(?:\d+[a-z]|[a-z])(?:\^\d+)(?:[\+|\-])(?:\d+[a-z])(?:[\+|\-])(?:\d+\=\d+)
Golang
for quadratic equations ||ax^2+bx+c=d||
Submitted by
anonymous
-
4 years ago
0
POC Mobile Detection
Golang
const regex = /(?:Mobile|Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera\sMobi)/gm; const str = `Mozilla/5.0 (Android; Mobile; rv:13.0) Gecko/13.0 Firefox/13.0 Mozilla/5.0 (Linux; U; Android 4.0.3; de-ch; HTC Sensation Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile...
Submitted by
anonymous
-
4 years ago
0
1st Synt Macro
Golang
no description available
Submitted by
anonymous
-
4 years ago
0
header
Golang
no description available
Submitted by
anonymous
-
4 years ago
1
...
8
9
10
11
12
...
16
0x28C6A6DdF8fF8A47A90A69bfE75cd89904a14d71
1
Regular Expression
Golang
`
^
(
[
a
-
z0
-
9
]
+
(?:
[
._-
]
[
a
-
z0
-
9
]
+
)*
)
@
(
[
a
-
z0
-
9
]
+
(?:
[
.-
]
[
a
-
z0
-
9
]
+
)*
\.
[
a
-
z
]
{2,}
)
$
`
i
Open regex in editor
Description
0x28C6A6DdF8fF8A47A90A69bfE75cd89904a14d71
Submitted by
anonymous
-
a year ago