Objective C - 将纯文本多列文件读入多个列数组
我已经看到了几个关于 Objective C 中文件处理的线程,但找不到一个简单的系统方法来执行此操作:假设您有一个多列数据文件,其中每个 xyz ... 列都由制表符分隔。我想做的只是将每一列转换为特定的数组。我几乎没有 Objective C 的经验,但我了解 C++。
先感谢您。
I have seen several threads about file handling in Objective C but can't find a simple systematic way to do this: let's say you have a multicolumn data files where each x y z ... columns are separated by tabs. What I want to do is just converting each column to a specific array. I have almost no experience with Objective C but I do know C++.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在使用
stringWithContentsOfFile:...
读取后,使用 NSString 方法执行此操作:使用
componentsSeperatedByString:@"\n"
将其拆分为行数组< /p>将每个线数组行拆分为
componentsSeperatedByString:@"\t"
Use a NSString method to do this after reading it with
stringWithContentsOfFile:...
:split it into a line-array with
componentsSeperatedByString:@"\n"
split each line-array line with
componentsSeperatedByString:@"\t"