JS C# 正则表达式去除html字符中所有的标签(img em标签除外)

时间:2024-07-11 17:34:38

js去除em标签

$(this).html().replace(/<(?!em|\/em).*?>/g, '')

C#去除

System.Text.RegularExpressions.Regex.Replace(hit.Source.Content.HtmlDecode(), "<(?!em|/em).*?>", "");

多个就是

/<(?!img).*?>/g, ""
/<(?!img|p|\/p).*?>/g,""