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,020 community submitted regex patterns...
0
InputInteger
PCRE2 (PHP >=7.3)
InputInteger
Submitted by
anonymous
-
2 years ago
0
Extract countries names in a spaceless string
PCRE2 (PHP >=7.3)
works with strings such as: U.K.TanzaniaU.S.A., UkraineFrance, GermanyU.S.A. Issues: Doesn't work with repeating acronyms, e.g.: U.K.U.S.A.; possible fix: (?:[A-Z]\.){1,3}|A-Z+ Works only with country's acronyms that have the same number of dots as the number of capital letters
Submitted by
whatserface
-
2 years ago
0
Match and capture (go) one or more times
PCRE2 (PHP >=7.3)
Match and capture (go) one or more times
Submitted by
anonymous
-
2 years ago
0
Split URL
Python
source = "https://regex101.com/r/Y5b7zZ/3" result = ("https", "regex101.com", "/r/Y5b7zZ/3") `
Submitted by
saparapat
-
2 years ago
0
bkengine多行宏正则解析
Python
用于解析bkengine的宏代码 如果代码的开头是形如// 这种注释,你需要先通过编程代码手动判断此行的开头是否为注释,如果是,则不处理后面的diam 如果注释在宏代码的后面 此正则不会处理在尾部的单行注释 注:此宏仅支持当行宏匹配(多行宏匹配可能会出现小问题)
Submitted by
小沙盒工作室
-
2 years ago
0
bkengine多行宏解析器
Python
简体中文: 用于解析bkengine的宏代码 如果代码的开头是形如// 这种注释,你需要先通过编程代码手动判断此行的开头是否为注释,如果是,则不处理后面的diam 如果注释在宏代码的后面 此正则不会处理在尾部的单行注释 注:此宏仅支持当行宏匹配(多行宏匹配可能会出现小问题)...
Submitted by
小沙盒工作室
-
2 years ago
(Last modified 2 years ago)
0
bkengine 多行宏词法分析 添加了分组参数
Python
bkengine 多行宏词法分析 添加了分组参数
Submitted by
小沙盒工作室
-
2 years ago
0
matches 4 or 6 or 8 digit which might be otp
PCRE2 (PHP >=7.3)
test
Submitted by
test
-
2 years ago
0
`git` URL
Python
Match git URL components (including partial URLs).
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
去除首尾空格
Python
去除首尾空格
Submitted by
anonymous
-
2 years ago
0
Kafka topic name regex
PCRE (PHP <7.3)
Kafka topic name regex
Submitted by
anonymous
-
2 years ago
0
Polynomial spotter
PCRE2 (PHP >=7.3)
spots polynomial pieces and captures the exponent and coefficient
Submitted by
anonymous
-
2 years ago
0
Match files' extention
Python
match files' extention
Submitted by
anonymous
-
2 years ago
0
Extract domain from email address
Python
Extract domain from email address.
Submitted by
Janus Helkjær
-
2 years ago
0
marcelobc548@gmail.com - Extrair Seções e Aptos
PCRE2 (PHP >=7.3)
Extrair número da seções e quantidade de eleitores aptos.
Submitted by
anonymous
-
2 years ago
0
VS Code find replace template block
ECMAScript (JavaScript)
Used with Visual Studio Code to search and replace text in between two markers. I use this to template in things that occur on multiple pages like the navigation menu. I know this can be done with javascript or servers side scripting, but sometimes I just want to pre process all of this like in the ...
Submitted by
Bishop
-
2 years ago
0
processo
PCRE2 (PHP >=7.3)
Preciso fazer um Input. 1234569-19.2009.7.19.1009 sobre alterando esses campos AnumeroProcesso%3AnumeroSequencial= ficaria 1234569 AnumeroDigitoVerificador= ficaria 19 AnumeroProcesso%3AAno=ficaria 2009 AnumeroProcesso%3AramoJustica=ficaria 7...
Submitted by
Anderson
-
2 years ago
0
Sports Release Regex attempt #1
PCRE2 (PHP >=7.3)
Yes. Its a thing.
Submitted by
anonymous
-
2 years ago
0
Strip datetime -> date
PCRE2 (PHP >=7.3)
Strip datetime -> date
Submitted by
anonymous
-
2 years ago
0
helix word motion
PCRE (PHP <7.3)
helix word motion
Submitted by
anonymous
-
2 years ago
1
...
462
463
464
465
466
...
901
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
(
[^
<>()
\[\]\\
.,;:
\s
@"
]
+
(
\.
[^
<>()
\[\]\\
.,;:
\s
@"
]
+
)*
)
|
(
"
.
+
"
)
)
@
(
(
\[
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
]
)
|
(
(
[
a
-
zA
-
Z
\-
0
-
9
]
+
\.
)+
[
a
-
zA
-
Z
]
{2,}
)
)
$
/
Open regex in editor
Description
no description available
Submitted by
anonymous
-
7 years ago