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 9,220 community submitted regex patterns...
0
Hw4 Q4
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
CAPLtoCSharpConverter with arrays
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
FlissAkten2.0
PCRE (PHP <7.3)
S Akten
Submitted by
anonymous
-
6 years ago
0
[code vba] pad string lines with space p2
PCRE (PHP <7.3)
This two-step find-replace routine gets you from MAX( MAX( MAX( to exprS = exprS & TrimRight("MAX( ") & _...
Submitted by
anonymous
-
6 years ago
0
[code vba] pad string lines with space p1
PCRE (PHP <7.3)
This two-step find-replace routine gets you from MAX( MAX( MAX( to exprS = exprS & TrimRight("MAX( ") & _...
Submitted by
anonymous
-
6 years ago
0
iso8601 duration
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Release Format
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
YouTube referral data
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Match all email entries in a data set
PCRE (PHP <7.3)
\b[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}\b
Submitted by
anonymous
-
6 years ago
0
Email Last Hop v6
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Sql Parser
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
html link
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Universal gds parser
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex CPF
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
CDL Lab 2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
CDL Lab 3
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
extract names from SKYPE /showmembers result
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
SWGOH calendar extract from ocr text
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex de Data
PCRE (PHP <7.3)
Regex que verifica se uma data é válida segundo as regras do calendário gregoriano
Submitted by
anonymous
-
6 years ago
0
Regex Poesia
PCRE (PHP <7.3)
Encontra as rimas buscadas na poesia de Camões
Submitted by
anonymous
-
6 years ago
1
...
170
171
172
173
174
...
461
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
-
a year ago