I'm parsing a CSV file in objective-c. The file contains something like this:
line 40 | Rising searches
line 41 | nabi avcı,Breakout
line 42 | stonewall,+700%
line 43 | medgar evers,+500%
line 44 | lgbt,+350%
line 45 | roe v wade,+350%
line 46 | αÏεÏγια,+250%
I want to get the contents of lines 41 to 50 (inclusive). I then want to separate the each line into two NSStrings one containing the stuff before the , and the other with the stuff after it. How can I do that?
Any help is really strongly appreciated. Thx! Antoine