Regular expression matching, replace the content in the html tag, excluding the content of the html tag itself;
For example:
var str="<p class='article'><p class=' article-item'>article-item</p></p>";
Matching keywords: article;
The desired matching result is:<p class="article"><p class="article-item"><span style="color:red">article</span>- item</p></p>>