What would be the best way to get every substring between double quotes and make it into an array?
For example, if the string (NSString) is:
@"abcd \"efgh\" ijklm \"no\" p \"qrst\" uvwx \"y\" z"
I want the result to be:
{@"efgh", @"no", @"qrst", @"y"}
as an NSArray.