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
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
-
4 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
-1
Grep from A to B
Rust
no description available
Submitted by
anonymous
-
4 years ago
(Last modified a year 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
0
goccy/go-json benchmark
Golang
pushd benchmarks && go mod vendor -v && go test -v -run='^$' -bench='^Benchmark.*(|(Decoder|Reuse|String|Unmapped|GoJson(NoEscape)?))$' -benchmem . && popd `
Submitted by
anonymous
-
4 years ago
0
https://twitter.com/MGWVc
Golang
[](url)
Submitted by
anonymous
-
4 years ago
0
match ***
Golang
no description available
Submitted by
anonymous
-
4 years ago
0
tag standard
Golang
no description available
Submitted by
anonymous
-
4 years ago
0
Commit msg
Golang
no description available
Submitted by
anonymous
-
4 years ago
1
...
9
10
11
12
13
...
17
Community Library Entry
3
Regular Expression
Golang
`
(?i)
^
(?:
(
[
a
-
z0
-
9-
]
+
|
\*
)
\.
)?
(
[
a
-
z0
-
9-
]
{1,61}
)
\.
(
[
a
-
z0
-
9
]
{2,7}
)
$
`
gm
Open regex in editor
Description
Validates subdomain, root domain, and wild card domains
Submitted by
AnonymousDapper
-
8 years ago