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 11,520 community submitted regex patterns...
0
Hot keys
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Question Search
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Parse fonction name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Language short(NL) expression
PCRE (PHP <7.3)
Checks for the shortstring of languages to be used Examples: NL,DE,EN,FR,FI,..
Submitted by
anonymous
-
7 years ago
0
Match url based on specific path values
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Extract titles from m3u playlist
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Validation rules
PCRE (PHP <7.3)
no description available
Submitted by
Slava Krampetz
-
7 years ago
0
Match numbers with length b\w 6-12
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Match ACSS components [main test].
PCRE (PHP <7.3)
Multiline regex for case when combinator is provided.
Submitted by
anonymous
-
7 years ago
0
FIle Name Compliant
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Kenyan phone number
PCRE (PHP <7.3)
Match against number sequence using international +254 or local 0 prefix.
Submitted by
m8r1x
-
7 years ago
0
international phonenumber parsing
PCRE (PHP <7.3)
based on (slightly) adopted regex from https://stackoverflow.com/a/20971688/1104502 It parses three groups: international code phone-number extension...
Submitted by
spex66
-
7 years ago
0
Base 64
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Unsigned Integer or Maximal Two-Digits Floating Point Input
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Unsigned Integer or Maximal Two-Digits Floating Point Input
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Integer (avoid more than 1 zero)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Get up to the first 10 lines of a string
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Two or More Zeros
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Two or More Zeros
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
numbers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
1
...
113
114
115
116
117
...
576
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