gpt4 book ai didi

html - 只获取 HTML 正文,没有标签

转载 作者:行者123 更新时间:2023-11-29 10:40:07 25 4
gpt4 key购买 nike

我没有网络开发/设计的背景或任何知识,我目前正在 iPhone 上开发电子邮件客户端应用程序,使用 UIWebView 来读/写电子邮件。

我将电子邮件作为对象下载并从该对象中获取主题、日期、地址和正文,但电子邮件正文是带有标签的 HTML 字符串。

我的目标:将电子邮件正文视为不带标签的普通字符串,例如 iPhone 邮件应用程序或 Gmail 应用程序。

这是一个很好的例子:

GMAIL MYMAIL

谢谢!

最佳答案

NSAttributedStringUITextViewLabel 一起使用

NSString *oldHTMLstring = @"<b>Testing</b>.<br><i>html</i>,<br><u>body text.</u>";
NSAttributedString *newHTMLstring = [[NSAttributedString alloc] initWithData:[oldHTMLstring dataUsingEncoding:NSUTF8StringEncoding] options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute: @(NSUTF8StringEncoding)} documentAttributes:nil error:nil];

[textView setAttributedText:newHTMLstring]; // sets attributed text
[textView setText:[newHTMLstring string]]; // sets normal text

这会自动将 HTML 转换为适当的文本

关于html - 只获取 HTML 正文,没有标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24975927/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com