I have a NSString:
NSString *string1 = @"http://example.com/this-is-an-example-post"
By removing a range of characteres I have substringed it to:
NSString *string2 = @"this-is-an-example-post"
But I am struggling to get it into the form of:
NSString *string3 = @"this is an example post"
Any help? Much appreciated.