js 正则表达式替换字符串img的src

Posted 阿梅の博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 正则表达式替换字符串img的src相关的知识,希望对你有一定的参考价值。

    imgSrcReplace(htmlstr) {
      let that = this;
      let regex3 = new RegExp(/<img [^>]*src=["]([^‘"]+)[^>]*>/gi);
      let domainURL = "http://www.baidu.com/";
      let htmlstr1 = htmlstr.replace(regex3, function (match, capture) {
        console.log("capture:", capture);
        let tmp = capture.split(domainURL + "");
        capture = "http://www.amei.com" + tmp[1];
        var newStr = "<img src=" + capture +   />;
        return newStr;
      });
      regex3 = null;
      console.log("htmlstr1:", htmlstr1);
      return htmlstr1;
    },

以上是关于js 正则表达式替换字符串img的src的主要内容,如果未能解决你的问题,请参考以下文章

js正则匹配替代指定字符(根据img标签的src中的命名规则,用正则表达式替换成下面格式的文字)

js使用正则表达式将字符串里面的img标签src的值提取出来

PHP用正则批量替换Img中src内容,用正则表达式获取图片路径实现缩略图功能

利用正则表达式替换img标签的问题

java正则表达式匹配img标签并替换

正则表达式:(1)要求提取字符串中的img标签,并根据不同的情况将该img标签替换成不同的字符串。