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 2,100 community submitted regex patterns...
0
Changed files in "git pull" output.
Python
Get the changed files from the "git pull" output. Use finditer to get a list of Matches.
Submitted by
anonymous
-
2 years ago
0
Python find {vars}
Python
Find every used variable in string between { and }
Submitted by
anonymous
-
2 years ago
0
Prefixed numerics
Python
Search regex for prefixed numerics (kB, Mb. ms. kHz etc.)
Submitted by
delameter
-
2 years ago
0
Sizes
Python
Getting sizes, formatted as in x or x. It supports up to 3 digits, with an additional, optional, decimal digit. The decimal point could be a comma, a point or even an apostrophe ( ' ).
Submitted by
Hermes
-
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
`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
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
Parse DevScript actions payload
Python
Parse DevScript action payloads
Submitted by
anonymous
-
2 years ago
0
取等号两边的数据
Python
取等号两边的 数据
Submitted by
小沙盒工作室
-
2 years ago
0
bkengine 单行宏匹配
Python
bkengine 单行宏匹配
Submitted by
anonymous
-
2 years ago
0
whatsapp meta data
Python
[8/23/18, 2:05:50 PM]
Submitted by
Mandar Gite
-
2 years ago
0
meter number
Python
meter number
Submitted by
econ
-
2 years ago
0
Client URL Isolation
Python
Pull the Client URL out of the Asana description field using targeted expression.
Submitted by
Al Romano
-
2 years ago
0
/w
Python
?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~абвгдеёжзийклмнопрстуфхцчшщъыьэ юяАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ !"#$%&\'()*+,-./0123456789:;
Submitted by
anonymous
-
2 years ago
0
租赁
Python
租赁
Submitted by
租赁
-
2 years ago
1
...
95
96
97
98
99
...
105
Community Library Entry
0
Regular Expression
Python
r"
(?:
(?P<Day1>
\d
{1,2}
)
(?:
\W
*
(?P<Month1>
[
A
-
Z
]
[
a
-
z
]
*
\b
)
)
|
(?:
(?P<Month2>
[
A
-
Z
]
[
a
-
z
]
*
\b
)
\W
*
)
(?:
(?P<Day2>
\d
{1,2}
)
(?:
\b
|
th
|
st
|
nd
)
)?
|
(?P<Month3>
\d
{1,2}
)
\W
+
(?P<Day3>
\d
{1,2}
)
|
(?P<Month4>
\d
{1,2}
)
)?
\W
+
?
(?P<Year>
\d
{2,4}
(?=
$
|
;
)
)
"
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
7 years ago