I have text file that with the following structure:
test\n
1\n
2\n
@/@/@/\n
test2 \n
223\n
44\n
@/@/@/\n
I can read it in array successfuly , but the line @/@/@/ is separator. I want to divide the NSArray to sub arrays at the separator.
Any suggestion how to solve that?
I also need to modify certain section.
Best regards
If you read it in as a NSString then
NSArray *chunks = [string componentsSeparatedByString: @"@/@/@/"];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With