我有一个这样的 html 表达式:
"This is <h4>Some</h4> Text" + Environment.NewLine +
"This is some more <h5>text</h5>
我只想提取文本。所以结果应该是
"This is Some Text" + Environment.NewLine +
"This is some more text"
我该怎么做呢?
string html = @"This is <h4>Some</h4> Text" + Environment.NewLine +
"This is some more <h5>text</h5>";
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(html);
var str = doc.DocumentNode.InnerText;
使用正则表达式简单:Regex.Replace(source, "<.*?>", string.Empty);