请提供正则表达式,在页面中仅突出显示一次单词。我现在正在使用它:
highlightRegex = new RegExp("" + highlightWordsConcat + "(?!')", "ig");
我不想显示已在页面上突出显示的字词。
问候。
答案 0 :(得分:0)
问题很模糊,但可能你正在寻找这样的东西:
s = 'provide me regex to highlight word only once in a page, using regex only'
var r = s.replace(/(regex)/i, '<b>$1</b>');
console.log(r);
<强>输出:强>
“提供正则表达式仅在页面中突出显示一次单词,仅使用正则表达式”