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,640 community submitted regex patterns...
0
FrameHeight
Python
Grab Frame Height
Submitted by
anonymous
-
5 years ago
0
Us phone regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Captures only numbers with 2+ digits and excluding prefix 0's
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Tests string if it is a valid number with or without its unit
ECMAScript (JavaScript)
Useful when working with css
Submitted by
anonymous
-
5 years ago
0
check code
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Code couleur en hexadécimal
ECMAScript (JavaScript)
#(([0-9A-F]{6})|([0-9a-f]{6}))
Submitted by
anonymous
-
5 years ago
0
Code couleur en hexadécimal
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
no double spaces / leading / trailing spaces
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Horriblesubs
Python
no description available
Submitted by
anonymous
-
5 years ago
0
saily find coords
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Find Field Between Two Tokens
Python
Find Field Between Two Tokens
Submitted by
anonymous
-
5 years ago
0
nba
Python
no description available
Submitted by
anonymous
-
5 years ago
0
xray - Filter
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Extract version strings from AssemblyInfo.cs
Python
Multiline support. Requires correct syntax of Assembly*. Ignores comments
Submitted by
anonymous
-
5 years ago
0
National interstate ins row re
Python
no description available
Submitted by
anonymous
-
5 years ago
0
WhatsappMsgParser
Python
This Regex parse whats-app messages to 4 groups: Group1- Date (dd/mm/yyyy) Group2- Time (hh:mm) Group3- Author/Sender (name or phone number) Group4- Chat (actual chat data)
Submitted by
anonymous
-
5 years ago
0
whatsaapDate
Python
dd/mm/yyyy
Submitted by
anonymous
-
5 years ago
0
Чистка телефонов (оставить только цифры и переносы строки)
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Datamatrix - N° de série
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Find Capture groups in RegExp Source
ECMAScript (JavaScript)
Find all capture groups in RegExp source. All forms of None-capture groups are ignored. name of named capture group will be captured by the name "name" which is group[2].
Submitted by
anonymous
-
5 years ago
1
...
123
124
125
126
127
...
282
Community Library Entry
0
Regular Expression
Python
r"
(?P<nom>
^
[
\w\d
]
?
)
\/
(?P<latfield>
(?P<latflag>
[
NS
]
)
(?P<latval>
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
)
\/
(?P<lonfield>
(?P<lonflag>
[
EW
]
)
(?P<lonval>
[
01
]
?
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
$
)
"
s
Open regex in editor
Description
Text fields describing a name and positions
Submitted by
bruno.piguet@meteo.fr
-
11 years ago