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 9,220 community submitted regex patterns...
0
Regex for Nginx Ingress (Preview API)
PCRE (PHP <7.3)
Request: get a specific segment of URL related to Language and add it as a query string, plus stripping of first 2 segments of the incoming URL: Group 1: language (which becomes QS) Group 2: second part of the URL to be maintained Group 3: Question mark "?" which needs to be removed...
Submitted by
anonymous
-
6 years ago
0
Regex for Nginx Ingress (Preview API)
PCRE (PHP <7.3)
Request: get a specific segment of URL related to Language and add it as a query string, plus stripping of first 2 segments of the incoming URL: Group 1: language (which becomes QS) Group 2: second part of the URL to be maintained Group 3: empty...
Submitted by
anonymous
-
6 years ago
0
For Removing 2 or More Dots
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
SPF syntax checker
PCRE (PHP <7.3)
This regex is meant to check the SPF records of domains.
Submitted by
anonymous
-
6 years ago
0
Remind Msg
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
CF
PCRE (PHP <7.3)
Reg1
Submitted by
anonymous
-
6 years ago
0
Regex Match all characters between two strings
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
lol2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex Match all characters between two strings
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Недревесное сырье
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Whatsapp data extract
PCRE (PHP <7.3)
Extract data from whatsapp exported chat. working, but in development.
Submitted by
anonymous
-
6 years ago
0
tokenize
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
formatVerificationTransaction_dim
PCRE (PHP <7.3)
grep Acc #, GUID, Sender/Receiver names
Submitted by
anonymous
-
5 years ago
0
Regex to match decimal as well as floating with two precision number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Address Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex für Betragstester
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
OpenHours-DoW
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
automação-template-idj
PCRE (PHP <7.3)
Teste básico : Update () : void KeyPress (key : int) : bool KeyRelease (key : int) : bool...
Submitted by
anonymous
-
6 years ago
0
automação-template-nome-idj
PCRE (PHP <7.3)
Teste básico : Update () : void KeyPress (key : int) : bool KeyRelease (key : int) : bool...
Submitted by
maffei2443
-
6 years ago
0
automação-template-metodos-idj
PCRE (PHP <7.3)
Captura as assinaturas dos métodos dos métodos das classes de idj. Teste básico: Update () : void KeyPress (key : int) : bool...
Submitted by
anonymous
-
6 years ago
1
...
123
124
125
126
127
...
461
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