0

我正在做 JSON 解析。我想删除许多不同的响应子字符串,因为 HTML 或 ASCII 值出现在我的响应中。喜欢'$quot;&等等。

我正在使用以下方法删除子字符串,但是如何删除所有 ASCII 或 HTML 子字符串?

NSString *strTe=[strippedString
         stringByReplacingOccurrencesOfString:@"&#39 ;" withString:@""];

编辑:在 HTML 表格标题下 查看此页面,我的回复中有这些符号。

4

1 回答 1

1

此代码可能有助于您的查询:

- (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;
}
于 2012-10-10T09:10:13.253 回答