我有一个这种格式的字符串,我从RSS提要中提取
http://puthiyathalaimurai.tv/the-train-exhibition-in-chennai
<br/>சென்னையில், சுற்றுச்சூழலை பாதுகாக்க வேண்டியதன் அவசியம் குறித்த ரெயில் கண்காட்சியை ஏராளமான மாணவ- மாணவிகள் பார்வையிட்டு வருகின்றனர்.
我需要格式化htmlString并仅显示“description”或排除URL,是否有可用的格式化方法?有什么建议吗?
我用于格式化的代码
NSString *htmlString = [NSString stringWithFormat:@"<html><head>Description: </head><body>%@</body></html>", _theString];
[_webView loadHTMLString:htmlString baseURL:nil];