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,500 community submitted regex patterns...
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
Domain validation regex suitable for user input
Golang
This regexp can be used to validate domain names in Golang. While it cannot enforce the 253 character limit (with optional trailing period not included) that can be easily done with a len(domain) <= 253 check. This can be used as-is in other languages, even with RE2 regex engine. Non-capturing grou...
Submitted by
anonymous
-
5 years ago
1
Domain validation regex suitable for user input
Golang
This regexp can be used to validate domain names in Golang. While it cannot enforce the 253 character limit (with optional trailing period not included) that can be easily done by a simple len(domain) <= 253 check as well. This can be used as-is in other languages, even with RE2 regex engine. If po...
Submitted by
Alexander Dupuy
-
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
0
First Names
Python
First names Allows for a hyphen Allows for a space Allows for a apostrophe
Submitted by
@thegamerbr1
-
5 years ago
0
number_lexer
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
gettext regex
Python
Matches strings within a gettext call. Covers the following examples: gtxt('i am in single-quotes') gtxt('i have \' an escaped single-quote within single-quotes') gtxt('i have a "double-quote" in single-quotes') gtxt("i am in double-quotes") gtxt("i am in double-quotes with single 'quotes'")...
Submitted by
anonymous
-
5 years ago
1
...
124
125
126
127
128
...
575
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