如何匹配以下html字符串中的 .
。
<p>My first <strong>comment</strong>. </p>
上述字符串在结束段落标记
之前的末尾可能有多个
。
答案 0 :(得分:0)
尝试使用/\.(?: )+(?=[^.]*$)/g
。
var str = '<p>. My first <strong>comment</strong>. </p>';
console.log(str.replace(/\.(?: )+(?=[^.]*$)/g, 'test'));
//"<p>. My first <strong>comment</strong>test</p>"
&#13;