How to match youtube links?
Matching youtube urls and their IDs
Everything you need to know about writing regular expressions for PHP.
This regex will match filenames that do not end in png or jpg.
Regex: ^.*\.(?!jpg$|png$)[^.]+$
This regex will match multiple multiple file names and extensions (jpg, png and gif)
Regex: ^([a-zA-Z0-9\s_\\.\-\(\):])+\.(jpg|png|gif)$