you could split the url string by the "/" so it would split
http://www.google.com/here
so use this code:
Code:
NSString *split2= @"http://www.google.com/here";
NSArray* split = [string2 componentsSeparatedByString:@"/"];
NSString* webURL = [NSString stringWithFormat:@"%@",[split objectAtIndex:2]];
and that brings back
www.google.com