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 2,740 community submitted regex patterns...
18
Get path from any text
Recommended
PCRE2 (PHP >=7.3)
Get path (windows style) from any type of text (error message, e-mail corps ...), quoted or not. THIS IS THE SINGLE LINE VERSION !_ If you want understand how it work or edit it, go https://regex101.com/r/7o2fyy Relative path are not supported...
Submitted by
nitrateag
-
2 years ago
(Last modified a year ago)
1
...
135
136
137
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
^
[
a
-
zA
-
Z0
-
9.!#$%&'*+
\/
=?^_`{|}~-
]
+
@
[
a
-
zA
-
Z0
-
9
]
(?:
[
a
-
zA
-
Z0
-
9-
]
{0,61}
[
a
-
zA
-
Z0
-
9
]
)?
(?:
\.
[
a
-
zA
-
Z0
-
9
]
(?:
[
a
-
zA
-
Z0
-
9-
]
{0,61}
[
a
-
zA
-
Z0
-
9
]
)?
)*
$
/
gm
Open regex in editor
Description
Source
Mozilla
.
Submitted by
anonymous
-
a year ago