Hi, is there something similar to regular expressions for objective-c?
I need a simple way to get elements from separated by following set of characters:
"\n"
", "
"; "
Currently I have the following code:
NSMutableArray *translations = [ [NSMutableArray alloc] init];
NSArray *temp_array1 = [ [translationsView text] componentsSeparatedByString:@"\n"];
for (int i = 0; i < [temp_array1 count]; i++)
{
NSArray *temp_array2 = [ [temp_array1 objectAtIndex: i] componentsSeparatedByString:@", "];
for (int j = 0; j < [temp_array2 count]; j++)
{j]);
[translations addObject: [temp_array2 objectAtIndex: j] ];
}
}
But I as well want implement support for the "; " separator. And if I am going to do it the same way I did it before it would become way to complex.
Is there an easier way to achieve this goal?
Thank you in advance.