I have an NSString with the value of
http://digg.com/news/business/24hr
How can I get everything before the 3rd level?
http://digg.com/news/
|
I have an NSString with the value of
How can I get everything before the 3rd level?
|
||||
|
|
|
This isn't exactly the third level, mind you. An URL is split like that way:
A "fully-featured" URL would look like this:
As you can see, it can get quite lengthy and can bear lots of informations. Depending on the origin of your URL, you might want to do more or less elaborate concatenations. Though, for your example URL, what you seem to want is the protocol, the host and the first path component.
|
|||||||||||||
|