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,540 community submitted regex patterns...
0
VBA Comment
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
riley 3
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
riley 2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
riley 1
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
mayfield 2
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Get document.cookie value by name
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
String after $
ECMAScript (JavaScript)
Selects the string after the $ sign
Submitted by
anonymous
-
5 years ago
(Last modified 3 years ago)
0
regex for log format for logging for sorting xml's
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Isin
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Sedol
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Cusip
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Date Validation - Including Leap Year (mm/dd/yyyy)
ECMAScript (JavaScript)
This regex validates all dates between 01/01/1900 and 12/31/2099, including leap-year validation. It follows a mm/dd/yyyy format, and enforces two-digit month/year formats.
Submitted by
anonymous
-
5 years ago
0
Find a word (Case-Insensitive)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
点运算符 .
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Regex validate PIN code (Solution www.codewars.com)
ECMAScript (JavaScript)
Regex validate PIN code (Solution www.codewars.com) https://www.codewars.com/kata/regex-validate-pin-code/javascript
Submitted by
anonymous
-
5 years ago
0
Python list indexing
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Match Time
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Detect Js string
Python
Regex to detect string of js
Submitted by
anonymous
-
5 years ago
0
Must have at least {{min}} non-alpha character
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Regex unique characters
ECMAScript (JavaScript)
From: stackoverflow.com/questions/12870489/regex-to-match-a-word-with-unique-non-repeating-characters
Submitted by
anonymous
-
5 years ago
1
...
123
124
125
126
127
...
277
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