字符串去掉HTML標簽但是保留樣式(主要是換行樣式),怎麼實現,或者說在什麼上面輸出可以實現
最好用C#實現
private string RemoveHtml(Match m)
{
if (m.Groups[1].Value.ToLower() == "br") return "<br>";
return "";
}
public string RemoveHtml(string s)
{
s = Regex.Replace(s, @"</?([a-z\d]+)[^>]*>", RemoveHtml, RegexOptions.IgnoreCase);
return s;
}
Response.Write( RemoveHtml("<div>a<br>b<b style='color:red'>c</b></div>"));//a<br>bc