码迷,mamicode.com
首页 > 移动开发 > 详细

使用正则提取url(iOS)

时间:2015-08-31 19:14:23      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:

直接上代码:

 

  NSString *string = @"我是大大 www.baidu.com 咪咪咪";    

    NSError *error;

    NSString *regulaStr = @"\\b((?:https?://|www\\d{0,3}[.]|[a-z0-9.\\-]+[.][a-z]{2,4}/)(?:[^\\s()<>]+|\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\))+(?:\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\)|[^\\s`!()\\[\\]{};:‘\".,<>???“”‘’]))";

    NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:regulaStr                                                                          options:NSRegularExpressionCaseInsensitive error:&error];

    NSLog(@"error:%@", error);

    NSArray *arrayOfAllMatches = [regex matchesInString:string options:NSMatchingReportCompletion range:NSMakeRange(0, [string length])];

    for (NSTextCheckingResult *match in arrayOfAllMatches)

    {

        NSString* substringForMatch = [string substringWithRange:match.range];

        NSLog(@"substringForMatch");

        NSLog(@"%@", substringForMatch);

    }

使用正则提取url(iOS)

标签:

原文地址:http://www.cnblogs.com/bug-sniper/p/4773577.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!