0

我看到一个类似的案例,它以 JQuery 的方式回答了我的问题: 删除标签但保留内容 - jQuery/Javascript

但我需要知道 C# 是如何工作的?C# 中是否有任何 API 可用于去除标签并保留平面文本?

从:

<a href="#">some content</a> and more <a href="#"> and more content</a>

至:

some content and more and more content

谢谢。

4

1 回答 1

0

使用 HtmlAgilityPack ( http://htmlagilitypack.codeplex.com/ ),将您的 HTML 文档加载到HtmlDocument实例中并进行查询document.DocumentNode.InnerText

于 2013-03-09T08:44:04.570 回答