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 3,560 community submitted regex patterns...
0
Select No Std Port Base Urls Including Latest Part String
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
All url with latest (optional)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Matches the full path to a file until the last slash or back slash, leaving just the filename itself unmatched
ECMAScript (JavaScript)
For instance in the string: /bla/di/bla/file.extention it would match: /bla/di/bla/
Submitted by
anonymous
-
7 years ago
0
Match last word in string
ECMAScript (JavaScript)
no description available
Submitted by
Isak
-
7 years ago
0
//
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Folder name validation
ECMAScript (JavaScript)
This is a javascript regular expression to validate characters not allowed on folder names. Some of them are not allowed at any place and other only at the beginning or the end. The characters not allowed at the beginning or the end are: Blank space Dot (.)...
Submitted by
Matías Gabriel Katz
-
7 years ago
0
markdown multiline code
ECMAScript (JavaScript)
no description available
Submitted by
EzioShiki
-
7 years ago
0
プリパラ
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Validate and hour date DD/MM/YYYY HH:mm (Leap Year)
ECMAScript (JavaScript)
Validate date in format DD/MM/YYYY HH:mm generaly used in Brazil. With hour in 24 hours format and validating leap year too, optional time.
Submitted by
Eleison Christiano
-
7 years ago
0
NFS share
ECMAScript (JavaScript)
matches a NFS share valid URL.
Submitted by
anonymous
-
7 years ago
0
regex for android consumer site
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Get/Set Property Signature
ECMAScript (JavaScript)
Matches full get/set property signature of C#
Submitted by
anonymous
-
7 years ago
0
SRC FROM HTML FOR IMAGES
ECMAScript (JavaScript)
Captura la URL de la etiqueta SRC, filtrada por un grupo de captura de extensiones de archivo de imagenes
Submitted by
anonymous
-
7 years ago
0
Breakup docker image string to registry/repo image and tag
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Replace all the characters but digits and minus sign
ECMAScript (JavaScript)
Replace all the characters but digits and minus sign.
Submitted by
Srichandradeep C
-
7 years ago
0
regex 5000000 - 8999999
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
symbols and numbers
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Email Client Quirks: Add spaces before !important where needed
ECMAScript (JavaScript)
no description available
Submitted by
Mike Kormendy
-
7 years ago
0
ComplexURLMatching filename and extension
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
ComplexURLMatching filename and extension
ECMAScript (JavaScript)
no description available
Submitted by
lg
-
7 years ago
1
...
24
25
26
27
28
...
178
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