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,320 community submitted regex patterns...
0
1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Dialogues
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
capture jassem
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Toast_Exception
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
XPRA
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Toast Check case status
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
new url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Toast Premium support try 1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Look Ahead - Dont include anchor urls
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Host and optional www. subdomain matching
PCRE (PHP <7.3)
matches the http portion of a url, both http:// and https://, and also matches the www. portion if that is included.
Submitted by
anonymous
-
6 years ago
0
substring
PCRE (PHP <7.3)
substring
Submitted by
anonymous
-
6 years ago
0
11
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
REGEX to parse IIS7 Log File into FluentD
PCRE (PHP <7.3)
This regex parses the entire line of the IIS log files (without detail on the AgentID) for usage into FluentD. The original was writen by Juan Carniglia. Link I've updated to move the spaces out of the capture, and to make the csmethod specific to GET/POST/etc.
Submitted by
Juan Carniglia
-
6 years ago
0
horizontal whitespaces
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Educadhoc
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Parse Excel Autopath case numbers
Python
no description available
Submitted by
anonymous
-
6 years ago
0
databinary
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Selección de números
PCRE (PHP <7.3)
Ejemplo de REGEX 01
Submitted by
anonymous
-
6 years ago
0
Recursive tag encapsulation
PCRE (PHP <7.3)
Gets the content between a and b recursively, getting the topmost set first example token to search for tags: aaaaabbbbbaababbaabbba
Submitted by
anonymous
-
6 years ago
0
Brighthouse get User email address and Role name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
105
106
107
108
109
...
566
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