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 5,020 community submitted regex patterns...
0
ex1 pcd
Python
"(?PJan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (?P\d\d) (?P\d\d\d\d), (?P\w{7}), (?P.*), (?P\d.\d)"gm
Submitted by
sparaiso
-
3 years ago
0
NSW Residential Zip Code
PCRE2 (PHP >=7.3)
The convention is found on this: https://en.wikipedia.org/wiki/Postcodes_in_Australia Values accepted: 2000—2599 2619—2899 2921—2999
Submitted by
Minh Dang
-
3 years ago
0
URL
Python
Recognizing URLs
Submitted by
anonymous
-
3 years ago
0
Loan Amount
Python
Recognizing loan amount
Submitted by
anonymous
-
3 years ago
-2
Conventional Commits commit regex
PCRE2 (PHP >=7.3)
https://www.conventionalcommits.org/en/v1.0.0/
Submitted by
Michael Collins
-
3 years ago
0
Semantic Branch Names Regex
PCRE2 (PHP >=7.3)
https://www.conventionalcommits.org/en/v1.0.0/
Submitted by
Michael Collins
-
3 years ago
0
xrandr device line
PCRE2 (PHP >=7.3)
Device line of xrandr output
Submitted by
anonymous
-
3 years ago
0
IPv4 Address +/- CIDR Slash Notation
Python
Grabs an IPv4 address, and if it has a CIDR slash notation, then grab that too.
Submitted by
dboyd42
-
3 years ago
(Last modified a year ago)
0
chia plot
Golang
chia plot
Submitted by
temple
-
3 years ago
0
Pleas help me select all content in div tag
PCRE2 (PHP >=7.3)
Pleas help me select all content in div tag
Submitted by
anonymous
-
3 years ago
0
Pleas help me select all content in div tag
PCRE2 (PHP >=7.3)
Pleas help me select all content in div tag
Submitted by
anonymous
-
3 years ago
0
Street name and house number
PCRE2 (PHP >=7.3)
Checks if address given has a street name and a house number among other things
Submitted by
Bill Seremetis (bserem)
-
3 years ago
0
URL Domain Capture
Python
A Python capture group for URL domain extraction.
Submitted by
DataQuest
-
3 years ago
0
Phone number
PCRE2 (PHP >=7.3)
It works like it looks, a plus followed by 1 or 2 digits, followed by a standard 10 digit phone number
Submitted by
Brady Kelly
-
3 years ago
1
Parse Data Fields
Python
Parsing example
Submitted by
anonymous
-
3 years ago
0
Day, year and month regex
PCRE2 (PHP >=7.3)
This regex allows to match date format with the same separators
Submitted by
Cymon
-
3 years ago
0
Match CamelCase
PCRE2 (PHP >=7.3)
Matches PascalCase or CamelCase
Submitted by
anonymous
-
3 years ago
0
IPv4 non zero first and last octet
PCRE2 (PHP >=7.3)
When validating an IPv4 address I often have to reject devices that the first and last octet are 0.
Submitted by
John Cutburth
-
3 years ago
0
nr_classe
PCRE2 (PHP >=7.3)
separação de um código numérico simples
Submitted by
anonymous
-
3 years ago
0
month with year extraction
Python
ready code
Submitted by
anonymous
-
3 years ago
1
...
112
113
114
115
116
...
251
Community Library Entry
-1
Regular Expression
Python
r"
(
\A
|
\s
)
#
(
\w
+
)
"
g
Open regex in editor
Description
Using the twitter API, take a tweet object and find & link #tags to embed in HTML
Submitted by
@triplec1988
-
11 years ago