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
Strong password
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Bank account number
ECMAScript (JavaScript)
3 to 12 digits in length only
Submitted by
anonymous
-
5 years ago
0
Strong password
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Username (simple)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Valid email (RFC5322)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Hexadecimal value
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
HTML Tags
PCRE (PHP <7.3)
HTML Tags from https://medium.com/factory-mind/regex-cookbook-most-wanted-regex-aa721558c3c1
Submitted by
anonymous
-
5 years ago
0
Avoid Extra Spaces
PCRE (PHP <7.3)
Avoid Extra Spaces from https://medium.com/factory-mind/regex-cookbook-most-wanted-regex-aa721558c3c1
Submitted by
anonymous
-
5 years ago
0
IPV4
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Ts to jsdoc
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
AN check
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Extract URI from text copy
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Safaricom Regex ~Feb 2020
ECMAScript (JavaScript)
As of Feb 2020 Sources: https://ca.go.ke/wp-content/uploads/2020/01/Telecommunication-Numbering-Plan-for-Kenya-Feb-2020-compressed.pdf
Submitted by
anonymous
-
5 years ago
0
autolink 와 src에 띄어쓰기있는 링크 충돌
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Prisantall v2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
BJR - descriptions split
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
4
INI Parser
PCRE (PHP <7.3)
Created for purpose of reading an INI file in C# applications. Supports comments and comment escape characters. I plan to add more escape characters (such as \=). s - Section scp - Section Comment Prefix sc - Section Comment...
Submitted by
Raxdiam
-
5 years ago
0
Email
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Actions proyecto lenguajes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
Audio filename splitter
Python
This Python regex allows you to split an audio filename with the sintax Authors - Title (Text1) [Text2].extension into: Group 1: Authors Group 2: Title Group 3: Text1 Group 4: Text2 Group 5: .extension...
Submitted by
Eche L.A.
-
5 years ago
1
...
345
346
347
348
349
...
902
Community Library Entry
1
Regular Expression
Python
r"
\b
(?P<date>
(?P<day>
(?:
(?:
0
[
1
-
9
]
|
[
12
]
\d
|
30
)
(?=
[
-
:
\.\/
]
(?:
04
|
06
|
09
|
11
))
)
|
(?:
(?:
0
[
1
-
9
]
|
[
12
]
\d
|
3
[
01
]
)
(?=
[
-
:
\.\/
]
(?:
01
|
03
|
05
|
07
|
08
|
10
|
12
))
)
|
(?:
(?:
0
[
1
-
9
]
|
[
12
]
\d
)
(?=
[
-
:
\.\/
]
02
[
-
:
\.\/
]
\d\d
(?:(
[
02468
]
[
048
]
)|
(
[
13579
]
[
26
]
)))
(?!
[
-
:
\.\/
]
02
[
-
:
\.\/
]
(?:(
[
2468
]
[
1235679
]
)|
(
[
13579
]
[
01345789
]
)
00
))
)
|
(?:
(?:
0
[
1
-
9
]
|
1
\d
|
2
[
0
-
8
]
)
(?=
[
-
:
\.\/
]
02
[
-
:
\.\/
]
)
)
)
[
-
:
\.\/
]
(?P<month>
0
[
1
-
9
]
|
1
[
012
]
)
[
-
:
\.\/
]
(?P<year>
[
1
-
9
]
\d
{3}
)
)
\b
"
gmx
Open regex in editor
Description
1000-9999 years '-', ' ', ':', '.', or '/' may be user as divider
Submitted by
furren
-
9 months ago