I want to change image suffix for all image having class "thumb". They can be in jpg, png or gif
<img class="thumb" src="http://someting.com/images/abc-150X150.jpg"/>
Want to remove -150X150
<img class="thumb" src="http://someting.com/images/abc.jpg"/>
I've come to know this code, But it removes extensions and uses img tag instead of class. Thanks for watching my question.