Tagged Questions

35
votes
9answers
40k views

Objective-C: Reading a file line by line

What is the appropriate way of dealing with large text files in Objective-C? Let's say I need to read each line separately and want to treat each line as an NSString. What is the most efficient way of ...
0
votes
3answers
86 views

Basic python file-io variables with enumerate

New to python and trying to learn the ropes of file i/o. Working with pulling lines from a large (2 million line) file in this format: 56fr4 4543d 4343d 5irh3 Here is the function I'm using to ...