iOS 将一串字符里面的某个字符全部标志出来

    NSMutableString * mutStr = [NSMutableString stringWithString:@"aaabbbbaaaccc"];
    NSString * str = @"a";
    NSRange range = {0,mutStr.length};
    [mutStr replaceOccurrencesOfString:@" " withString:@"" options:NSLiteralSearch range:range];
    [mutStr replaceOccurrencesOfString:@"\n" withString:@"" options:NSLiteralSearch range:range];
    
    NSMutableAttributedString * attr = [[NSMutableAttributedString alloc]initWithString:mutStr];
    NSError * error;
    NSRegularExpression * express = [NSRegularExpression regularExpressionWithPattern:str options:NSRegularExpressionCaseInsensitive error:&error];
    NSArray<NSTextCheckingResult *> * result = [express matchesInString:mutStr options:0 range:range];
    for (NSTextCheckingResult * match in result) {
        NSRange range = [match range];
        [attr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:range];
    }
    
    UILabel * lbl = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 200, 40)];
    [self.view addSubview:lbl];
    lbl.textColor = [UIColor blueColor];
    lbl.attributedText = attr;

  

posted @ 2016-09-02 17:07  羊羊羊&#128017;  Views(228)  Comments(0Edit  收藏  举报