Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

text file question

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

like image 512
AMH Avatar asked May 17 '26 08:05

AMH


1 Answers

If you read it in as a NSString then

NSArray *chunks = [string componentsSeparatedByString: @"@/@/@/"];
like image 130
Devraj Avatar answered May 19 '26 22:05

Devraj