Home  >  Article  >  Web Front-end  >  去掉NSString中的HTML标签_html/css_WEB-ITnose

去掉NSString中的HTML标签_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:41:411224browse

-(NSString *)filterHTML:(NSString *)html
{
    NSScanner * scanner = [NSScanner scannerWithString:html];
    NSString * text = nil;
    while([scanner isAtEnd]==NO)
    {
        //找到标签的起始位置
        [scanner scanUpToString:@"         //找到标签的结束位置
        [scanner scanUpToString:@">" intoString:&text];
        //替换字符
        html = [html stringByReplacingOccurrencesOfString:[NSString stringWithFormat:@"%@>",text] withString:@""];
    }
        NSString * regEx = @"]*)>";
        html = [html stringByReplacingOccurrencesOfString:regEx withString:@""];
    return html;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn