我正在尝试从这里减少一个 URL:
http://www.huffingtonpost.com/2013/08/01/edward-snowden-russia_n_3688225.html
对此:
http://www.huffingtonpost.com/
使用NSMakeRange(Location, Length)
我的代码:
if ([URLContainer hasPrefix:@"http://www."]) {
NSLog(@"URL Detected");
NSUInteger Location = 0;
NSUInteger Length = 29;
NSString *URLCutDown = [URLContainer substringWithRange: NSMakeRange(Location, Length)];
Label = URLCutDown;
}
我的问题是我不太清楚如何Length
在正斜杠 ( /
) 处结束。