// 2、写一个网址过滤的功能,要求得到此网址的域名,比如下面地址: //http://www.google.com/search?hl=en&source=hp&q=objective+c /

//    2、写一个网址过滤的功能,要求得到此网址的域名,比如下面地址:

//http://www.google.com/search?hl=en&source=hp&q=objective+c

//    解析完得到的结果应该是:

//    http://www.google.com

    NSString *str=@"http://www.google.com/search?hl=en&source=hp&q=objective+c";

    NSString *s=@".com";

    NSRange r;

    r=[str rangeOfString:s];

    int location=r.location+r.length;

    NSString *str2=[str substringToIndex: location];

    NSLog(@".com  is %@",str2);

    

你可能感兴趣的:(iphone,Object-c开发,oc)