Remove number before link

Is it possible to remove the numbers before the link? numbers are generated randomly from 0 to 1000. it is impossible to replace with a text block because the link contains numbers

the code I use to call the list

(function() {
var Thumbnail = new Object();
    thumbimages = document.getElementsByTagName("img");
    for(var i = 0; i < 3; i++) {
        Thumbnail[i] = thumbimages[i].src;
    }
var allData = new Object();
allData = {Thumbnail};
return JSON.stringify(allData);
})();

each link has a different length. it is not possible to use the “start end” block

use following blocks

2 Likes

thank you so much. best!!!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.