Hey I am looking for a way to extract a string from another string. It could be any length and be in any part of the string so the usual methods don\'t work.
For exampl
Try this
NSArray* foo = [@"10/04/2011" componentsSeparatedByString: @"/"]; NSString* day = [foo objectAtIndex: 0];
NSArray* foo = [@"10/04/2011" componentsSeparatedByString: @"/"];
NSString* day = [foo objectAtIndex: 0];