解析时如何删除iphone中的html标签?

时间:2010-12-03 14:20:57

标签: iphone html xml-parsing

在解析一些html标签的时候,我需要删除那个标签

例如

<img src=http://www.browndailyherald.com/polopoly_fs/1.2421290!image/4027750474.jpg_gen/thumbnails/100x100/4027750474.jpg><br /><br><p>
Andrew Furnas '11 has been named a recipient of the Marshall Scholarship, a nationally competitive fellowship which sponsors two years of graduate study in the United Kingdom....</p>

我需要删除<img>标记并仅显示内容

请帮帮我

2 个答案:

答案 0 :(得分:0)

将其存储在 NSSMutableString 中,然后使用 deleteCharactersInRange 功能删除您不想要的内容。

您需要通过搜索 NSMutableString 来确定范围。

所有解决方案都可以在Google上轻松找到。

答案 1 :(得分:0)

您可以使用Three20Core删除HTML代码。

 [yourString stringByRemovingHTMLTags];