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 120 community submitted regex patterns...
0
Initials
.NET 7.0 (C#)
get the initial of a strings
Submitted by
Eddie Choong
-
2 years ago
0
SSID Pattern
.NET 7.0 (C#)
Length must be 7 digits Every character must be an integer
Submitted by
Abhi Reddy
-
2 years ago
(Last modified 2 years ago)
0
P4 file info
.NET 7.0 (C#)
just p4 file command output match
Submitted by
anonymous
-
2 years ago
0
CAN regex
.NET 7.0 (C#)
n
Submitted by
anonymous
-
2 years ago
0
Names from Wikipedia List
.NET 7.0 (C#)
Matches all names in a Wikipedia List, excluding names with suffixes (eg. Jr., III, PhD, etc.) or multiple middle names.
Submitted by
Brian Kozub
-
2 years ago
0
Task6.1
.NET 7.0 (C#)
simple mail regex
Submitted by
anonymous
-
2 years ago
0
Task6.2
.NET 7.0 (C#)
Telephone number regex
Submitted by
anonymous
-
2 years ago
0
Remplazar contenido
.NET 7.0 (C#)
Remplazar contenido
Submitted by
anonymous
-
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
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
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
https://rextester.com/JFUKE76014
.NET 7.0 (C#)
0x9d9b6f05d7b72588f83cc60fda4286ba45d13924 Nonce 6324 Rash 0xa964e1ee4c92c25f47392f67b735095304631089b5f2173825b7e93f49f08d57 Bloco 3391586 Commit fb5aa46...
Submitted by
0x9d9b6f05d7b72588f83cc60fda4286ba45d13924
-
2 years ago
1
...
3
4
5
6
Community Library Entry
2
Regular Expression
.NET 7.0 (C#)
@"
^
(
(
\+
?
(
61
\W
?
4
)
)
|
(
04
)
)
\W
?
(
(
[
0
-
9
]
{2}
\W
[
0
-
9
]
{3}
\W
[
0
-
9
]
{3}
)
|
(
[
0
-
9
]
{8}
)
|
(
[
0
-
9
]
{4}
\W
[
0
-
9
]
{4}
)
|
(
[
0
-
9
]
{2}
\W
[
0
-
9
]
{6}
)
)
$
"
Open regex in editor
Description
validates against multiple common formats
Submitted by
anonymous
-
2 years ago