How can I match all images without thumb image using regexp ?
hi.gif
thumb.gif
hello.gif
Result should be :
hi.gif
hello.gif
I am using .+(gif|GIF|jpg|JPG)
to match all images
How can I match all images without thumb image using regexp ?
hi.gif
thumb.gif
hello.gif
Result should be :
hi.gif
hello.gif
I am using .+(gif|GIF|jpg|JPG)
to match all images
Put a negative look-ahead at the start:
(?!thumb\.).+(gif|GIF|jpg|JPG)