美文网首页
ios 用正则表达式截取字符转的一部分

ios 用正则表达式截取字符转的一部分

作者: rockyMJ | 来源:发表于2017-07-05 11:25 被阅读29次
    - (NSArray *)matchString:(NSString *)string toRegexString:(NSString *)regexStr
    {
        
        NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:regexStr options:NSRegularExpressionCaseInsensitive error:nil];
        
        NSArray * matches = [regex matchesInString:string options:0 range:NSMakeRange(0, [string length])];
        
        //match: 所有匹配到的字符,根据() 包含级
        
        NSMutableArray *array = [NSMutableArray array];
        
        for (NSTextCheckingResult *match in matches) {
            
                //以正则中的(),划分成不同的匹配部分
             NSString *component = [string substringWithRange:[match rangeAtIndex:1]];
                
             [array addObject:component];
        }
        
        return array;
    }
    

    相关文章

      网友评论

          本文标题:ios 用正则表达式截取字符转的一部分

          本文链接:https://www.haomeiwen.com/subject/iojbcxtx.html