0

在过去的一年里,我一直在使用 Dave DeLong 出色的 CHCSVParser 创建一个数组,如下所示:

    NSArray *array = [NSArray arrayWithContentsOfCSVFile:path encoding:NSISOLatin1StringEncoding error:&error2];

我只是现在有一个问题。csv 文件是从 Excel 电子表格生成的,省略号 - Excel 自动更正为单个字符 - 导致当前数组数组的结尾(我认为它必须调用 finishCurrentLine,但我不知道如何停止这个)。

  1. 如何阻止“...”导致数组数组完成?
  2. 我能做些什么来防止其他角色引起类似的问题?

提前致谢

4

1 回答 1

0

If the file is in the ".xls" format, you can use the libxls open source library on SourceForge to read the file directly - and get the exact text or number for each cell. Also, there is an ObjectiveC framework wrapper too.

于 2013-03-19T18:21:18.810 回答