Hi all i want extract the last part from string which is a four digit number \'03276\' i:e http://www.abc.com/news/read/welcome-new-gig/03276
http://www.abc.com/news/read/welcome-new-gig/03276
how can i
Try this:
NSString *myUrl = @"http://www.abc.com/news/read/welcome-new-gig/03276"; NSString *number = [[myUrl componentsSeparatedByString:@"/"] objectAtIndex: 5];