替换jquery中字符串中多次出现的多个子字符串

Posted

技术标签:

【中文标题】替换jquery中字符串中多次出现的多个子字符串【英文标题】:Replace multiple occurrences of multiple sub-strings in string in jquery 【发布时间】:2017-04-16 04:58:39 【问题描述】:

我有一个小程序,它正在根据数组元素检查字符串中的字符序列,如果在数组 terms[] 中找到序列,则执行某些操作。但是,这仅适用于我使用以下机制的数组中的第一个实例匹配。我怎样才能使这种情况发生多次?

示例:terms = ['hello', 'world', 'this', 'is', 'me']

给程序的字符串是:hello here is me

要求程序将在字符串中找到的与数组中的任何单词匹配的单词分别替换为单词 red 和 green,但是程序在找到的第一个匹配项处停止,即当前的结果程序化系统是:

'red here is me'

代替

'red here green me'

如何更改以下功能以提供第二个结果?

for (var i = 0; i < terms.length && !match; i++) 
    if (string.indexOf(terms[i]) > -1) 
        match = true;
        var newString = '';
        wrapper.css("background", "#a1e4ff");
        var matchString = string.substring(string.indexOf(terms[i]), (string.indexOf(terms[i]) + terms[i].length));

我不认为你理解我,我不关心 css,我关心子字符串替换。

这是我当前的代码

function check(string) 
    var terms = ['one', 'two'];
    var match = false;

    for(var i=0;i<terms.length;i++) 

        if(string.indexOf(terms[i]) > -1) 
            match = true;
            var newString='';
            var matchString = string.substring(string.indexOf(terms[i]), (string.indexOf(terms[i])+terms[i].length));

            switch(matchString) 
                case 'one':
                newString = string.replace(matchString, "three");
                break;
              case 'two':
                newString = string.replace(matchString, "four");
              default:
                alert('no matches');
            

            $("ul").append("<li>" + newString + "</li>");
        
      
    

check('this is a one example string of two');

目前我的程序结果如下: 这是 two

three 示例字符串

我想修复我的程序以实现以下结果: 这是 four

three 示例字符串

【问题讨论】:

你是说它在红/绿之间交替出现..? 【参考方案1】:

使用带有替换功能的String#replace,并在颜色之间交替:

function replaceWithColor(str, terms) 
  var termsDict = terms.reduce(function(d, t) 
    d[t] = true;
    return d;
  , Object.create(null));
  
  var colors = ['red', 'green'];

  var i = 0;

  return str.replace(/\w+/g, function(t) 
    return termsDict[t] ? colors[i++ % 2] : t;
  );


var terms = ['hello', 'world', 'is', 'me'];

var str = "hello here this is me";

var result = replaceWithColor(str, terms)

console.log(result);

还有一个使用 Set 和箭头函数的 ES6 版本:

const replaceWithColor = (str, terms) => 
  const termsSet = new Set(terms);
  
  const colors = ['red', 'green'];

  let i = 0;

  return str.replace(/\w+/g, (t) => termsSet.has(t) ? colors[i++ % 2] : t);


var terms = ['hello', 'world', 'is', 'me'];

var str = "hello here this is me";

var result = replaceWithColor(str, terms)

console.log(result);

【讨论】:

这并不容易,考虑terms = ['is']str = "this" 确实如此。将它们包裹在空格内应该可以解决此问题。你怎么看? 我已经可以更改在数组中找到的第一个匹配项,但如果有第二个匹配项,它就不起作用。也许我可以以某种方式更改代码以循环多次相同的字符串? 我改变了逻辑。找一个词,看看它是否在terms,然后才替换它。我将创建一个术语字典以提高性能。【参考方案2】:

var terms = ['hello', 'world', 'this', 'is', 'me'];


function check(str) 
  var 
   s = str.split(' ');
   out = [],
   redgreen = ['red','green'],
   rgcount = 0;
  
  s.forEach(function (k, i) 
    if (terms.indexOf(k) >= 0) 
      var color = redgreen[rgcount];
      out.push('<span class="'+color+'">'+color+'</span>');
      rgcount = (rgcount + 1) % 2;
     else out.push(k);
  );
  document.write(out.join(' ')+'<br/>');


check('hello here is me');
check('one two there is three four pink yelow there is this what yet there');
check(terms.join(' '));
.red 
  color: red

.green 
  color: green;

【讨论】:

以上是关于替换jquery中字符串中多次出现的多个子字符串的主要内容,如果未能解决你的问题,请参考以下文章

PB中取字符串子串的函数是啥

Oracle REGEXP_REPLACE - 用子字符串替换多次出现的模式

带有字符串子字符串的SwiftUI 5.5初始化数组? [关闭]

C++编程,查找字符串子串并替换。

求字符串不同子串个数

[在python中使用正则表达式搜索字符串子字符串