3

我有一个这样的 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"

我该怎么做呢?

4

2 回答 2

8

使用HtmlAgilityPack

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;
于 2012-09-20T10:13:33.993 回答
1

使用正则表达式简单:Regex.Replace(source, "<.*?>", string.Empty);

于 2012-09-20T10:14:04.257 回答