如何去掉邮件中的 HTML 标签?
我最后一次使用 EWS MAPI 连接到 Exchange Server。完成此操作后,我访问我的邮件并首先在网格视图中显示它们的正文(其中包含很多 HTML 标签)。选择该网格视图的记录后,正文将显示在自由文本框中。
我的问题是我想删除正文中的 HTML。并配置自由文本框,使其仍然以其真实格式显示文本。
提前致谢。
For the last time I've been using EWS MAPI to connect to Exchange Server. After this is done I access my mails and firstly display their body (which contains a LOT HTML-tags) in a gridview. After you select a record of that gridview the body is shown in a freetextbox.
My problem is that I want to get rid of the HTML in the body. And configure the freetextbox so that it still displays the the text in his true format.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用正则表达式。
看一下:此处
You can use regular expressions.
have a look at: here
您可以使用 Html Agility Pack 来解析 Html 并剥离出您想要的内容。关于它有很多信息,例如: How to use HTML Agility pack
You can use Html Agility Pack to parse Html and strip out what you want. There are a lot of information on SO about it, for example: How to use HTML Agility pack
也许这可以帮助
将特殊字符转换为 HTML 实体,不改变标签和参数
Maybe this can help
Convert special chars to HTML entities, without changing tags and parameters