码迷,mamicode.com
首页 > 移动开发 > 详细

iOS中过滤html文档中的标签

时间:2014-09-17 18:34:02      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:io   os   for   sp   c   html   amp   ef   htm   

在iOS项目开发中,有时候我们需要加载一段html文档,但又不能显示出文档中的标签,比如</a>,<a href=........>等这样的标签

这时我们可以用到如下方法来去除文档中的标签而只加载文本

-(NSString *)flattenHTML:(NSString *)str{

    NSScanner *theScanner;

    NSString *text = nil;

    theScanner = [NSScanner scannerWithString:str];

    while ([theScanner isAtEnd] == NO) {

        [theScanner scanUpToString:@"<" intoString:NULL];

        [theScanner scanUpToString:@">" intoString:&text];

        str = [str stringByReplacingOccurrencesOfString:[NSString stringWithFormat:@"%@>",text] withString:@""];

    }

    return str;

  }

方法返回类型为字符串,参数也只需要我们传入一段字符串 我们就可以对其进行过滤

 

iOS中过滤html文档中的标签

标签:io   os   for   sp   c   html   amp   ef   htm   

原文地址:http://www.cnblogs.com/billy-chou/p/3977595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!