JSFiddle - React, Tailwind, and code Playground
by alexflav23
JavaScript
var test = ['http://some-path/image-50-50x100.jpg',
'http://some-path/image-50-150x100.jpg',
'http://some-path/image-50-1024x698.jpg',
'http://some-path/image-50.jpg'];
for (var i = 0, len = test.length; i < len; i++) {
document.body.innerHTML += test[i].replace("^50+") + "<br />";
};