I have this string, inside the variable 'strings':
NSMutableArray *array_strings;
NSString *strings = @"one<-+->two<-+->three";
The separator string is "<-+->". I want to place certain words from the string within an array, as below:
- [0] -> one
- [1] -> two
- [3] -> three