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,420 community submitted regex patterns...
0
Datacon url (behalve tampan/klantentool)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Replace word
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
(Last modified a year ago)
0
Get regex group intersections, not at the end
Python
Not sure
Submitted by
anonymous
-
5 years ago
0
EventTypeCode
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Subparagraph
Python
Searches whether a string of cross references contains the sub paragraph part or not.
Submitted by
anonymous
-
5 years ago
0
Extract the actual sub-clauses numbers referred in the cross reference
Python
From the full expression of sub clause or clause referred, it extracts the actual numbers and returns the list of them.
Submitted by
anonymous
-
5 years ago
0
Get lines not commented with #
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
(Last modified 3 years ago)
0
address dot
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
bold family
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ORIGIN_ALERT_NORMAL
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
names_college_google_meet
PCRE (PHP <7.3)
Google meet names list
Submitted by
anonymous
-
5 years ago
0
spark to scala
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Zabbix
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
SF_KAFKA_CONNECTOR
PCRE (PHP <7.3)
Used for parsing logs of snowflake kafka connector
Submitted by
anonymous
-
5 years ago
0
Get parent folder and file name from full path
PCRE (PHP <7.3)
This expr will get the parent folder and file name from a full path eg: c:\folder1\folder2\folder3\file1.txt returns folder3\file1.txt
Submitted by
anonymous
-
5 years ago
0
CSB34 Account header
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
find including multiline
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
phone regex validation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Float representation
Python
All float representations that can be consumed by strtod() (string to double function in c) Compatible with flex/bison
Submitted by
anonymous
-
5 years ago
0
cisco show run interface
PCRE (PHP <7.3)
This regex fetches interface ID along with its ip address and description if configured otherwise blank
Submitted by
anonymous
-
5 years ago
1
...
123
124
125
126
127
...
571
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