正则表达式或jQuery替换另一个字符串中的所有字符串匹配

这个问题在这里已经有了答案:

  • 你如何在正则表达式中使用变量? 16个答案

  • 使用RegExp()将搜索字符串转换为正则表达式

    var searchedTerm = "test";
    var returnedString = "National testing Plant testers";
    var replacedString = returnedString.replace(new RegExp(searchedTerm, 'g'), '<span class="highlight">' + searchedTerm + '</span>');
    
    document.write(replacedString);
    .highlight {
      color: red;
    }
    链接地址: http://www.djcxy.com/p/76823.html

    上一篇: Regex or jquery replace all string matches in another string

    下一篇: JS replacing all occurrences of string using variable