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 18,000 community submitted regex patterns...
0
Capture project with SPV
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
open.spotify.com/track to spotify:track:
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
POI CORS
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
PH_Try1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
PH_Try2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Array
PCRE (PHP <7.3)
no description available
Submitted by
Ashish
-
6 years ago
0
Office
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
BITSDesk Ticket Matching
PCRE (PHP <7.3)
This matches TicketIDs on BITSDesk even with crap before and after them.
Submitted by
anonymous
-
6 years ago
0
Ph_try3
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
SR169
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Ph_try4
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Try5
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
codez
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Wtf
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Mascara para CPF
PCRE (PHP <7.3)
const cpfMask = (cpf) => { if (/[a-zA-Z]|\W/.test(cpf)) { return cpf.replace(/[a-zA-Z]|\W/, ""); } ...
Submitted by
coderpy
-
6 years ago
0
Find only matching quotes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
(Last modified 3 years ago)
0
Remove invalid phone codes from phonenumber field
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Remove invalid phone codes from phonenumber field
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Work, Episode In Quotes Capture
PCRE (PHP <7.3)
Helping Jeanne
Submitted by
anonymous
-
6 years ago
0
XH1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
496
497
498
499
500
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(?'chemin'
(?|
(
^
)
|
(
.
*
\\
)
|
(
.
*
\/
)
|
(
^
\/
)
)
)
(?'fichier'
(?'prefix'
[
a
-
z0
-
9_
\-
]
{4}
)
(?'num_photo'
[
0
-
9
]
{1,10}
)
(?'extention'
\.
[
a
-
z0
-
9
]
{3,4}
)
)
$
/
i
Open regex in editor
Description
Extraire les informations du chemin d'une photo.
Submitted by
Nicolas
-
2 years ago