本文介绍了如何解析Objective-C中的文本文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要一次解析一行文本文件。另外,在Objective-C中是否有EOF?
I need to parse a text file, one line at a time. Also, is there EOF in Objective-C?
推荐答案
这样的事可能适合你:
NSString *fileContents = [NSString stringWithContentsOfFile:@"myfile.txt"];
NSArray *lines = [fileContents componentsSeparatedByString:@"\n"];
这将为您提供一个数组,其中每个元素都是字符串的一行。
This will give you an array where each element is a line of the string.
这篇关于如何解析Objective-C中的文本文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!