Community Patterns

Community Library Entry

0

Regular Expression
Created·2023-03-02 01:35
Flavor·PCRE2 (PHP)

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

Description

If u want to change the file extension match, just replace : (?:png|jpg|jpeg) by anything u want. Example : (?:txt|pdf) or (?:mp3|ogg) or (?:mp4) or etc...

Submitted by Holome