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,000 community submitted regex patterns...
1
dd-MM-yyyy validation
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
MyTelephoneNumberRegex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
parsing objdump output
Python
parsing objdump output
Submitted by
anonymous
-
8 years ago
0
Simple ES5 to ES6 Shorthand Function notation
PCRE (PHP <7.3)
Converts standard function(a,b) function notation into (a, b) => { shorthand for ES6.
Submitted by
Simon Poole
-
8 years ago
3
Hostname validation
Golang
Validates subdomain, root domain, and wild card domains
Submitted by
AnonymousDapper
-
8 years ago
1
/etc/passwd for most Linux distributions (e.g. Debian)
Python
no description available
Submitted by
anonymous
-
8 years ago
1
Italian check codeline
PCRE (PHP <7.3)
Expression matches magnetic codeline of checks, in italian banking system. i.e. >1234567890 old layout check >1234567890- 103014250# 66666666+ --> new layout check (notice the '-' check number terminator)...
Submitted by
Benny
-
8 years ago
0
Decimal Degrees - Lat Long format
PCRE (PHP <7.3)
no description available
Submitted by
Anthony Giles
-
8 years ago
0
Degrees Decimal Minutes - Lat Long Format
PCRE (PHP <7.3)
no description available
Submitted by
Anthony Giles
-
8 years ago
0
Degrees Minutes Seconds
PCRE (PHP <7.3)
Checks DMS given in Longitude / Latitude order
Submitted by
Anthony Giles
-
8 years ago
0
Degrees Minutes Seconds
PCRE (PHP <7.3)
Checks DMS given in Latitude / Longitude order
Submitted by
Anthony Giles
-
8 years ago
1
SharePoint file name validator - KB905231
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Extract Plain Text from HTML <td> Cell Tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Define and detect custom tag with specific prefix & suffix
ECMAScript (JavaScript)
Define and detect custom tag with specific prefix & suffix Define custom tag : `` . Regex is /\s]+?):>/gm . Prefix is `` . tag_name can not contain prefix, suffix, space, tab or newline character . tag_name can not be null ....
Submitted by
ShenTengTu
-
8 years ago
1
#define
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Remove Header Rows
PCRE (PHP <7.3)
Removes the first n rows of a file
Submitted by
Raphael Bögel
-
8 years ago
0
From "Classes" until "Detailed Description"
PCRE (PHP <7.3)
From "Classes" until "Detailed Description"
Submitted by
anonymous
-
8 years ago
0
Select from "Member Data Documentation" until final "}"
PCRE (PHP <7.3)
Select from "Member Data Documentation" until final "}"
Submitted by
anonymous
-
8 years ago
0
Restreindre scripts SQL
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
test
PCRE (PHP <7.3)
test
Submitted by
anonymous
-
8 years ago
1
...
613
614
615
616
617
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
"geo":
\{
"type":"Point","coordinates":
\[
(?P<latitude>
[^
,
\]\}
]
+
)
,
(?P<longitude>
[
\d
\.\-
]
+
)
/
Open regex in editor
Description
This extracts latitude and longitude from a Tweet pulled through the public API.
Submitted by
Ed Fullman
-
8 years ago