I have an array, see below,
NSMutableArray *myArray=[[NSMutableArray alloc]initWithObjects:@"45 x 2",@"76 x 3",@"98 x 3", nil];
Now I want the whole string to be right on the character "x" in another array. That is, I need an array with elements @"2",@"3",@"3"from the specified array.
How can i achieve this? thank..
source
share