带有不区分大小写标志 'i' 的正则表达式 javascript 和全局不会工作

regex javascript with case insensitive flag 'i' and global wont work

我正在研究突出显示在字符串中找到的查询文本的方法,我的想法是为找到的每个匹配项添加粗体标记。问题是当我尝试用 g 替换所有出现的查询文本并且我标记它不这样做时,它看起来像忽略了 i 标记。

这是函数:

highlight  =  function(text,q){
        if (text.indexOf(q) != -1) {
            text = text.replace(new RegExp("\b".concat(q, "\b"), 'gi'), '<b>' + q + '</b>');
          } else{
            q = q.split(' ');
            q.forEach(function (item) {
              if (text.indexOf(item) != -1) text = text.replace(new RegExp("\b".concat(item, "\b"), 'gi'), '<b>' + item + '</b>');
            });
          }
             return text;
    }

随意测试一下,下面是我测试过的两个例子:

highlight(' is THIS this','this') => is <b>this</b> <b>this</b>有效!

highlight(' is THIS','this') => is THIS没有

尝试这样的事情:

highlight = function(text, q) {
  return text.replace(new RegExp("\b" + q + "\b", 'gi'),
                      function(x) {
                        return '<b>' + x + '</b>';
                      });
}