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 5,280 community submitted regex patterns...
0
autogpt-system-command-parse
Python
autogpt-system-command-parse
Submitted by
anonymous
-
a year ago
0
auto-gpt-THOUGHTS block
Python
auto-gpt-THOUGHTS block
Submitted by
anonymous
-
a year ago
0
auto-gpt-parse next-action
Python
auto-gpt-parse next-action
Submitted by
anonymous
-
a year ago
0
autogpt-parse next-action
Python
autogpt-parse next-action
Submitted by
anonymous
-
a year 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
-
a year ago
0
auto-gpt- parse system cmd
Python
auto-gpt- parse system cmd
Submitted by
anonymous
-
a year ago
0
PemFormatRegex2023
PCRE2 (PHP >=7.3)
Regex for validate PEM format of RSA public and private key
Submitted by
Satancito
-
a year ago
0
test everything
Java 8
hello
Submitted by
anonymous
-
a year ago
0
Commafication
PCRE2 (PHP >=7.3)
Add commas to large number to make it more readable.
Submitted by
Karthik Kaasa
-
a year ago
(Last modified a year 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
-
a year 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
-
a year ago
0
TIBCO BWAppNode Regex Parser
PCRE2 (PHP >=7.3)
TIBCO BWAppNode Regex Parser for Prometheus Process Exporter
Submitted by
Tibmon
-
a year ago
0
for string with arguments
PCRE2 (PHP >=7.3)
range:50,100,200,300,400
Submitted by
anonymous
-
a year 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
-
a year 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
-
a year ago
0
check url
PCRE2 (PHP >=7.3)
check url
Submitted by
anonymous
-
a year ago
0
匹配限定后缀名中的指定关键字,忽略大小写
Golang
匹配.mkv和.mp4后缀名中包含menu或sp或.sample,忽略大小写
Submitted by
anonymous
-
a year ago
(Last modified a year ago)
0
匹配限定后缀名的文件,忽略大小写
Golang
匹配.mka后缀名的文件,忽略大小写
Submitted by
anonymous
-
a year ago
0
aaaPEPExxxxxJUANbbbbb
PCRE2 (PHP >=7.3)
Test para Félix
Submitted by
anonymous
-
a year 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
-
a year ago
(Last modified a year ago)
1
...
252
253
254
255
256
...
264
email matcher
0
Regular Expression
PCRE2 (PHP >=7.3)
/
(?(DEFINE)
(?'loc_part'
[
\w
!#$%&'*+
\-\/
=?^`{|}~
]
+
)
(?'loc'
\g'loc_part'
(?:
\.
\g'loc_part'
)*
)
(?'subdom'
[
a
-
z
]
(?:
[
a
-
z
\d
-
]
*
[
a
-
z
\d
]
)?
)
(?'tld'
[
a
-
z
]
{2,6}
)
)
(?'local'
\g'loc'
)
@
(?'domain'
(?:
\g'subdom'
\.
)+
\g'tld'
)
/
ixg
Open regex in editor
Description
match some emails and extract their local part and domain
Submitted by
dang duomg 191
-
4 months ago
(Last modified 4 months ago)