目标c:读取csv文件
我有这种类型的文件:
@firstTablel: 1#one#two#third#four; 2#苹果#塔#花#机器人;
这是我的 csv 文件的示例...“firstTable”是我的表,1 和 2 是我的两个项目的两个 id。
我如何在 Objective C 中读取这个文件?你能帮助我吗?
I have this type of file:
@firstTablel: 1#one#two#three#four;
2#apple#tower#flower#robot;
this is an example of my csv file..."firstTable" is my table and 1 and 2 are two id of my two item.
How I can read this file in objective c? Can you help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Cocoa for Scientifics 有一篇关于读取 CSV 文件的精彩文章:http://macresearch .org/cocoa-scientists-part-xxvi-parsing-csv-data
在您的情况下,您需要执行以下操作:
在您提供的示例中,这将打印:
Cocoa for Scientists has a great post on reading CSV files: http://macresearch.org/cocoa-scientists-part-xxvi-parsing-csv-data
In your case, you'd do something like:
On the sample you've provided, this will print: