在网上搜索如何将HTML字符串标记转换为纯文本的示例。
我从包含HTML
的Feed中获取我的信息,然后在文本视图中显示此信息。 UITextView
是否有转换HTML
的属性,或者我必须在代码中执行此操作。我试过了:
NSString *str = [NSString stringWithCString:self.fullText encoding:NSUTF8StringEndcoding];
但似乎不起作用。有人有任何想法吗?
答案 0 :(得分:33)
您可以通过使用NSScanner类
解析html来实现- (NSString *)flattenHTML:(NSString *)html {
NSScanner *theScanner;
NSString *text = nil;
theScanner = [NSScanner scannerWithString:html];
while ([theScanner isAtEnd] == NO) {
[theScanner scanUpToString:@"<" intoString:NULL] ;
[theScanner scanUpToString:@">" intoString:&text] ;
html = [html stringByReplacingOccurrencesOfString:[NSString stringWithFormat:@"%@>", text] withString:@""];
}
//
html = [html stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
return html;
}
希望这有帮助。
答案 1 :(得分:8)
如果您使用的是UIWebView,那么将HTML解析为文本会更容易:
fullArticle = [webView stringByEvaluatingJavaScriptFromString:@"document.body.getElementsByTagName('article')[0].innerText;"]; // extract the contents by tag
fullArticle = [webView stringByEvaluatingJavaScriptFromString:@"document.body.innerText"]; // extract text inside body part of HTML
答案 2 :(得分:-1)
你不能直接这样做我猜..但是你可以使用NSXML Parser并解析HTML并找到你想要的......
答案 3 :(得分:-1)
如果您需要以只读方式呈现文本,为什么不使用UIWebView?