提取字符串中的url网址 正则表达式

NSString *urlString=@"电视剧发布的数据发布速度比较快撒比的";
    
    NSError *error;
    
    NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"http+:[^\\s]*" options:0 error:&error];
    
    if (regex != nil) {
        
        NSTextCheckingResult *firstMatch=[regex firstMatchInString:urlString options:0 range:NSMakeRange(0, [urlString length])];
        
        if (firstMatch) {
            
            NSRange resultRange = [firstMatch rangeAtIndex:0]; //等同于 firstMatch.range — 相匹配的范围
            
            //从urlString当中截取数据
            
            NSString *result=[urlString substringWithRange:resultRange];
            
            //输出结果
            
            NSLog(@"%@",result);
            
        }
    }

你可能感兴趣的:(ios)