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 140 community submitted regex patterns...
0
Sanitize CSV Export Expression for regex.replace (this regex) with empty string
.NET 7.0 (C#)
see owasp recommendation for things to remove from a csv export. this expression matches on following characters [. , ; + = - @ ' "] also carriage return make sure to clear strings for whitespace and choose your preferred methods for additional security from the examples in the owasp documentation...
Submitted by
anonymous
-
2 years ago
0
sdfsfd
.NET 7.0 (C#)
sdfdsf
Submitted by
anonymous
-
2 years ago
0
Any WhiteSpace Character
.NET 7.0 (C#)
Any WhiteSpace Character
Submitted by
anonymous
-
2 years ago
0
custom email
.NET 7.0 (C#)
custom email
Submitted by
anonymous
-
2 years ago
0
7zip file type regex
.NET 7.0 (C#)
header of output from > 7z i
Submitted by
ninmonkey
-
2 years ago
0
title and page
.NET 7.0 (C#)
find title and page in text
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Match token and optional convert to type in string
.NET 7.0 (C#)
I use this in a JSON template together with JObject data to create a JSON string
Submitted by
rkleinkromhof
-
2 years ago
0
IP Table Parse IPID
.NET 7.0 (C#)
Match 1 is the IPID
Submitted by
Tres Little
-
2 years ago
0
URL
.NET 7.0 (C#)
(@url)([\s]=[\s])(?:')(.)(?:')(?:;)
Submitted by
anonymous
-
2 years ago
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
1
...
3
4
5
6
7
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
^
(?=
(?<http>
(?:
https
?
:
\/\/
){1}
(?:
www
\.
)?
)?
)
(?
(?=
\k<http>
?
(?<ipaddr>
(?:
\d
{1,3}
\.
){3}
\d
{1,3}
(?:
\:
\d
{1,5}
)?
)
)
\k<http>
?
\k<ipaddr>
(?:
\.
[
\w
]
{1,9}
)?
|
\k<http>
(?:
[
\w
]
\.
?
){1,255}
\.
[
\w
]
{1,9}
)
(?:
\/
.
*
)?
$
"
gm
Open regex in editor
Description
Can be used to validate on URL's.
Submitted by
anonymous
-
a year ago