如何删除html标签,只在c#中留下文本
本文关键字:只在 文本 下文 标签 何删除 删除 html | 更新日期: 2023-09-27 18:02:59
我看到一个类似的案例,用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
谢谢。
使用htmllagilitypack (http://htmlagilitypack.codeplex.com/),将HTML文档加载到HtmlDocument
实例中并查询document.DocumentNode.InnerText