iOS---过滤掉json中的html标签

html标签:如

[self flattenHTML:str];
//方法
- (NSString *)flattenHTML:(NSString *)html { 
    NSScanner *theScanner; 
    NSString *text = nil; 搜索
 theScanner = [NSScanner scannerWithString:html]; 
while ([theScanner isAtEnd] == NO) { 
        // find start of tag 
        [theScanner scanUpToString:@"<" intoString:NULL] ; 
        // find end of tag 
        [theScanner scanUpToString:@">" intoString:&text] ; 
        // replace the found tag with a space 
        //(you can filter multi-spaces out later if you wish) 
        html = [html stringByReplacingOccurrencesOfString: 
                [NSString stringWithFormat:@"%@>", text] 
                                               withString:@""]; 
 } // while // 
    NSLog(@"-----===%@",html); 
    return html; 
}

你可能感兴趣的:(iOS---过滤掉json中的html标签)