为了账号安全,请及时绑定邮箱和手机立即绑定

在字符第一次出现之前插入字符串

在字符第一次出现之前插入字符串

慕田峪9158850 2023-07-29 13:35:46
我有一个导入图像文件的功能,我想将缩略图与原始文件关联起来。我需要_og在第一次出现句点之前插入。有人可以帮助我使用正则表达式或知道不同的方式吗?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        })    ));}
查看完整描述

1 回答

?
慕勒3428872

TA贡献1848条经验 获得超6个赞

.是正则表达式中的一个特殊字符,表示匹配任何字符,因此您应该对其进行转义:

.replace(/\./g, "_og.")

顺便说一句,我很确定您正在寻找Object.keys(r)而不是r.keys(),并且r[key]而不是r(key)


查看完整回答
反对 回复 2023-07-29
  • 1 回答
  • 0 关注
  • 93 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信