URL에 대한 지정된 매개변수 대응 값 가져오기

1527 단어 매개 변수
+ (NSString *) paramValueOfUrl:(NSString *) url withParam:(NSString *) param{

    NSError *error;
    NSString *regTags=[[NSString alloc] initWithFormat:@"(^|&|\\?)+%@=+([^&]*)(&|$)",param];
    NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:regTags
                                                                           options:NSRegularExpressionCaseInsensitive
                                                                             error:&error];

    //  
    NSArray *matches = [regex matchesInString:url
                                      options:0
                                        range:NSMakeRange(0, [url length])];
    for (NSTextCheckingResult *match in matches) {
        NSString *tagValue = [url substringWithRange:[match rangeAtIndex:2]];  //  2 
        return tagValue;
    }
    return nil;
}

좋은 웹페이지 즐겨찾기