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 320 community submitted regex patterns...
0
Remplazar contenido
.NET 7.0 (C#)
Remplazar contenido
Submitted by
anonymous
-
2 years ago
0
Terraform Service Name
Golang
Useful for validating services in TF
Submitted by
Nick Zaccardi
-
2 years ago
0
TAP Result Log issue
.NET 7.0 (C#)
This might help you to not miss some because the (.....), is dependent on the length.
Submitted by
Darwin Subramaniam
-
2 years ago
(Last modified 2 years ago)
0
Enum map to test cases
.NET 7.0 (C#)
.
Submitted by
DenKu1
-
2 years ago
0
myRegEx
.NET 7.0 (C#)
myRegEx
Submitted by
Avinash
-
2 years ago
0
Sanitize percentage input into bare real number
.NET 7.0 (C#)
Turn "123,456 %" into just "123.456"! Mainly for use in C# to parse percentage as string into double. Strip away whitespace Replace comma with decimal point Only allow valid numeric input multiple commas or decimal points won't match...
Submitted by
Moravuscz
-
2 years ago
0
Semantic Version (semver)
.NET 7.0 (C#)
.NET version of the Python regex found on https://semver.org/
Submitted by
semver.org,Jeff Jacobson
-
2 years ago
0
super regex
Golang
Get every word ending with dot using Regex/VBA
Submitted by
anonymous
-
2 years ago
0
BI/CC
.NET 7.0 (C#)
Verificação do número de BI/CC
Submitted by
anonymous
-
2 years ago
0
Email address validator - ASCII standard
.NET 7.0 (C#)
Checks whether the string is a valid email address per ASCII.
Submitted by
rotors6472
-
2 years ago
0
MoltenObsidian Internal Link
.NET 7.0 (C#)
Provides parsing w/ named variables for MoltenObsidian-flavoured Markdown wikilinks. (https://github.com/Nodsoft/MoltenObsidian)
Submitted by
Sakura Akeno Isayeki
-
2 years ago
(Last modified a year ago)
0
IPv4 Address Validation Regex
Golang
IPv4 Address Validation Regex
Submitted by
ulgena
-
2 years ago
(Last modified 2 years ago)
0
VLAN ID Validation Regex
Golang
VLAN ID Validation Regex Please use first segment or second depending on the Extended VLAN usage such as "1-256" or "1-4096" : Non-extended VLAN IDs (1-256), check v2 of the regex entry ...
Submitted by
ulgena
-
2 years ago
0
Date String ISO Pattern
Golang
Date String ISO Pattern matcher
Submitted by
Lucas Morais
-
2 years ago
0
Permiso CRE SAT México
.NET 7.0 (C#)
Valida clave o permiso de la CRE
Submitted by
Omar Chávez / Documentación SAT - Comeplemento Nacional CFDIs
-
2 years ago
0
French Insurance Number
.NET 7.0 (C#)
French Insurance Number
Submitted by
Dohts
-
2 years ago
0
fix plot histogram calls
.NET 7.0 (C#)
k
Submitted by
anonymous
-
2 years ago
0
Golang Get variables In Js
Golang
To get
Submitted by
anonymous
-
2 years ago
0
RE2 match of APRS-IS header information
Golang
This re2 (using Go in my case) matches the APRS-IS header. The format of the APRS-IS packet is TNC2 standard: SOURCE>DESTINATION,PATH:PACKET ...
Submitted by
Jack Hamm (jack@wv6l.net)
-
2 years ago
0
https://rextester.com/JFUKE76014
.NET 7.0 (C#)
0x9d9b6f05d7b72588f83cc60fda4286ba45d13924 Nonce 6324 Rash 0xa964e1ee4c92c25f47392f67b735095304631089b5f2173825b7e93f49f08d57 Bloco 3391586 Commit fb5aa46...
Submitted by
0x9d9b6f05d7b72588f83cc60fda4286ba45d13924
-
2 years ago
1
...
12
13
14
15
16
Community Library Entry
0
Regular Expression
Python
r"
to=<
(?P<email>
\S
+
)
>,
\s
relay=
(?!
10
\.
10
\.
10
\.
)
(?P<relay>
\S
+
)
,
.
+
dsn=
(?P<dsn>
\d
+
\.
\d
+
\.
\d
+
)
,
\s
status=
(?!
sent
)
(?P<status>
\w
)
\w
+
\s
\(
(?:
host
\s\S
+
\[
\S
+
\]
\s
said:
\s
)?
(?P<code>
\d
{3}
)?
"
g
Open regex in editor
Description
Full regex for failed sendings
Submitted by
anonymous
-
8 years ago