In my personal of Iphone development project I need to retrieve data from plain txt file, afterwards using delimiter to separate data in the way I want.
It’s my sample data:
100 100, 200 200, 300 300, 400 400
So how to retrieve data from myfile.txt and later retrieve the string “100 100” from this chunk of data?
This is for getting the contents of the file. To seperate different pieces of data use this:
I hope this is helpful