我有一個(gè)導(dǎo)入圖像文件的功能,我想將縮略圖與原始文件關(guān)聯(lián)起來(lái)。我需要_og在第一次出現(xiàn)句點(diǎn)之前插入。有人可以幫助我使用正則表達(dá)式或知道不同的方式嗎?importAll(r) { let imageArray = r.keys(); // This removes the actual original file from the array // so it only includes the thumbnails since they are all in the same directory. imageArray = imageArray.filter(s => !s.includes('_og')); imageArray.forEach(key => ( this.images.push({ path: r(key), // thumbnail pathOriginal: r(key).replace(/./g , "_og."), // original }) ));}
在字符第一次出現(xiàn)之前插入字符串
慕田峪9158850
2023-07-29 13:35:46