如何查看有效的网址?

时间:2015-08-08 19:59:28

标签: ios objective-c search nspredicate nsurl

我如何检查NSURL是否有效? 1)如果我输入“facebook.com”,则应添加“http://www。”

2)如果我输入“www.facebook.com”,则应添加“http://”

3)如果我输入“facebook”,那么它应该在google上搜索。

我如何实现这一目标?

我正在按照以下方式进行此操作,但它无效。对于第三种情况,它总是返回true。(“http://www.facebook”)

if (![url.absoluteString.lowercaseString hasPrefix:@"http://"])
    {
        if(![url.absoluteString.lowercaseString hasPrefix:@"www."])
        {
            url = [NSURL URLWithString:[@"http://www." stringByAppendingString:locationField.text]];

        }
        else
        {
            url = [NSURL URLWithString:[@"http://" stringByAppendingString:locationField.text]];
        }
    }
if(![self validateUrl:url.absoluteString])
{
     url = [NSURL URLWithString:[NSString stringWithFormat:@"http://www.google.com/search?q=%@",[locationField.text stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]];
}


 - (BOOL) validateUrl:(NSString *)candidate
{
  NSString *urlRegEx = @"((https|http)://)((\\w|-)+)(([.]|[/])((\\w|-)+))+";
  NSPredicate *urlTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", urlRegEx];
  return [urlTest evaluateWithObject:candidate];
}

2 个答案:

答案 0 :(得分:5)

如果用户输入www.,则无需添加facebook.comhttp://就够了。无论如何,以下函数可以使用或不使用www.

func checkURL(url: String ) -> Bool {    
    let urlRegEx = "^http(?:s)?://(?:w{3}\\.)?(?!w{3}\\.)(?:[\\p{L}a-zA-Z0-9\\-]+\\.){1,}(?:[\\p{L}a-zA-Z]{2,})/(?:\\S*)?$"
    let urlTest = NSPredicate(format: "SELF MATCHES %@", urlRegEx)
    return urlTest.evaluateWithObject(url)
}

checkURL("http://www.россия.рф/") // true
checkURL("http://www.facebook.com/") // true
checkURL("http://www.some.photography/") // true
checkURL("http://facebook.com/") // true

checkURL("http://www.россия/") // false
checkURL("http://www.facebook/") // false
checkURL("http://www.some/") // false
checkURL("http://facebook/") // false

checkURL("http://россия.рф/") // true
checkURL("http://facebook.com/") // true
checkURL("http://some.photography/") // true
checkURL("http://com/") // false

答案 1 :(得分:0)

在swift 2中,

    func verifyUrl (str: String?) -> Bool {
     //Check for nil
     var urlString = str!
     if urlString.hasPrefix("http://") || urlString.hasPrefix("https://"){

     }else{
         urlString =  "http://" + urlString
     }
     let userURL:String =  urlString

     let regex = try? NSRegularExpression(pattern: "((https|http)://)((\\w|-|m)+)(([.]|[/])((\\w|-)+))+", options: .CaseInsensitive)
     return regex?.firstMatchInString(userURL, options: [], range: NSMakeRange(0, userURL.characters.count)) != nil
   }