I have tried, but I simply can't wrap my head around regex in PHP. I need a regex that does the following:
I have the following for now, which seems to fulfill #2 and #3, but not #1:
preg_match(/(?<!thumb)\.(gif|jpg|png|jpeg)$/i, $file)
Any help much appreciated!
If I understood third point correctly it means that it should end with all these file extensions. Considering this, the following will work
1st Solution
(?!^__|.*thumb\.(gif|jpg|png|jpeg))(^.*)(?=\.(gif|jpg|png|jpeg)$)
Towards an efficient solution
2nd Solution
^(?!__|.*thumb\.(?:gif|jpg|png|jpeg))(.*(?=\.(?:gif|jpg|png|jpeg)$).*$)
3rd Solution (suggested by Wiktor in comments)
^(?!__|.*thumb\.(?:gif|jpg|png|jpeg))(?=.*\.(?:gif|jpg|png|jpeg)$).*
4th Solution (suggested by Casimir in comments)
^(?!__)(?:[^.\n]*\.)*+(?<!thumb\.)(?:jpe?g|png|gif)$
PHP Code
$re = "/^(?!__|.*thumb\\.(?:gif|jpg|png|jpeg))(?=.*\\.(?:gif|jpg|png|jpeg)$)(.*)/m";
$str = "__abcd.jpg\nthumbabcd.gif\nthumbabcdthumb.jpg\nthumbs.jpg\nsomethumb.jpg\nthumb.jpg\nabcd.jpg\nabcd.jps";
preg_match_all($re, $str, $matches);