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,040 community submitted regex patterns...
0
Python Call Graph
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
cores
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
gleason
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
extract usernames
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Match everything but CVS
Python
no description available
Submitted by
anonymous
-
6 years ago
0
@COQUE.LU
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Convert decorator to HOC
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
@OPAL02
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
BP2L (creation)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
OPAL (keepparam)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
CEPAL (keepparam)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
INTENT (creation2)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Date
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
change SVG tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Replacement regex for bible citations in Examen de grado
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
activity diary schedule line
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
activity diary schedule line separated in to groups
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
activity diary schedule line separated in to groups
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
coordinate name extension and email
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
match a 4chan media url
Python
no description available
Submitted by
anonymous
-
6 years ago
1
...
567
568
569
570
571
...
902
Community Library Entry
0
Regular Expression
Python
r"
(
[
a
-
z
]
\s
*
)?
(
(
[
零幺一二两三四五六七八九十百千万点比
]
|
[
零一二三四五六七八九十
]
[
]
|
(?<=
[
一二两三四五六七八九十
]
)
[
年月日号
]
|
(
分之
)
)+
(
(?<=
[
一二两三四五六七八九十
]
)
[
a
-
zA
-
Z年月日号个只分万亿秒
]
|
(?<=
[
一二两三四五六七八九十
]
\s
)
[
a
-
zA
-
Z
]
)?
(?(1)
|
(?(5)
|
(
[
零幺一二两三四五六七八九十百千万亿点比
]
|
(
分之
)
)
)+
)
)
"
xig
Open regex in editor
Description
大部分应当匹配的数字都匹配上了。
第2个捕获组,即是内容(可能加的有单位,需要手动去除)
Submitted by
HaujetZhao
-
2 years ago