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 18,000 community submitted regex patterns...
0
autogpt-parse next-action
Python
autogpt-parse next-action
Submitted by
anonymous
-
2 years ago
0
Update vue 2 to vue 3 Vue.set
PCRE2 (PHP >=7.3)
it changes the old vue 2 stype using Vue.set, to direct assign object
Submitted by
Iagomussel
-
2 years ago
0
i++ in bash
PCRE (PHP <7.3)
asdf
Submitted by
anonymous
-
2 years ago
0
PemFormatRegex2023
PCRE2 (PHP >=7.3)
Regex for validate PEM format of RSA public and private key
Submitted by
Satancito
-
2 years ago
0
test everything
Java 8
hello
Submitted by
anonymous
-
2 years ago
0
Commafication
PCRE2 (PHP >=7.3)
Add commas to large number to make it more readable.
Submitted by
Karthik Kaasa
-
2 years ago
(Last modified 2 years ago)
0
Turkish Phone Number
PCRE2 (PHP >=7.3)
Supported Formats +90 or 0 are optional. (ddd)ddd-dd-dd (ddd)ddd-dddd (ddd)ddddddd (ddd) ddd-dd-dd...
Submitted by
Fatih Bahceci
-
2 years ago
0
FileTimeStamp regex
PCRE2 (PHP >=7.3)
Returns object with dateTime elements .Designed for FiletimeStamp of logging module
Submitted by
Stéphane van Gulick
-
2 years ago
0
TIBCO BWAppNode Regex Parser
PCRE2 (PHP >=7.3)
TIBCO BWAppNode Regex Parser for Prometheus Process Exporter
Submitted by
Tibmon
-
2 years ago
0
hsl colors
ECMAScript (JavaScript)
matches many HSL and HSLA formats permitted in CSS
Submitted by
anonymous
-
2 years ago
0
for string with arguments
PCRE2 (PHP >=7.3)
range:50,100,200,300,400
Submitted by
anonymous
-
2 years ago
0
find date format 2023-10-04
PCRE2 (PHP >=7.3)
find date format 2023-10-04 \d{4}-\d{2}-\d{2}
Submitted by
joe hu
-
2 years ago
0
find date format 31/04/2023 or 31/4/2023
PCRE2 (PHP >=7.3)
find date format 31/04/2023 or 31/4/2023 (0?[1-9]|12|3[01])\/(0?[1-9]|1[012])\/\d{4}
Submitted by
anonymous
-
2 years ago
0
check url
PCRE2 (PHP >=7.3)
check url
Submitted by
anonymous
-
2 years ago
0
匹配限定后缀名中的指定关键字,忽略大小写
Golang
匹配.mkv和.mp4后缀名中包含menu或sp或.sample,忽略大小写
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
匹配限定后缀名的文件,忽略大小写
Golang
匹配.mka后缀名的文件,忽略大小写
Submitted by
anonymous
-
2 years ago
0
aaaPEPExxxxxJUANbbbbb
PCRE2 (PHP >=7.3)
Test para Félix
Submitted by
anonymous
-
2 years ago
0
Support metrics.agent.grafana.com/scrape or prometheus.io/scrape with or without K/V pairs for multiple ports
PCRE2 (PHP >=7.3)
relabel_configs: only probe services with probe set, both of the following annotations are supported: metrics.agent.grafana.com/scrape: true prometheus.io/scrape: true or metrics.agent.grafana.com/scrape: http-metrics=true,grpc=false...
Submitted by
AaronB
-
2 years ago
(Last modified 2 years ago)
0
Support metrics.agent.grafana.com/scheme or prometheus.io/scheme with or without K/V pairs for multiple ports
PCRE2 (PHP >=7.3)
relabel_configs: allow override of http scheme, both of the following annotations are supported: prometheus.io/scheme: http metrics.agent.grafana.com/scheme: http or prometheus.io/scheme: http-metrics=http,http-service=https...
Submitted by
AaronB
-
2 years ago
0
Support metrics.agent.grafana.com/path or prometheus.io/path with or without K/V pairs for multiple ports
PCRE2 (PHP >=7.3)
allow override of default /probe path, both of the following annotations are supported: metrics.agent.grafana.com/path: /~/ready prometheus.io/path: /~/healthy or metrics.agent.grafana.com/path: /~/ready prometheus.io/path: /~/healthy...
Submitted by
AaronB
-
2 years ago
1
...
886
887
888
889
890
...
900
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