Regular Expressions 101

Community Patterns

10

UUID

ECMAScript (JavaScript)
no description available
Submitted by anonymous - 9 years ago

Windows file path regex with root, relative path, and (image) file extension matching.

0

Regular Expression
PCRE2 (PHP >=7.3)

/
^(?P<Root>[A-Za-z]:(?:\/|\\))(?P<Relative>(?:(?:[^<>:"\/\\|?*\n])+(?:\/|\\))+)(?P<File>(?:[^<>:"\/\\|?*\n]+)(?:\.(?:png|jpg|jpeg)))$
/
gm

Description

Loading markdown...
Submitted by Holome - 9 months ago