这是我的代码,csv文件是
“你好,宝贝”,测试
BYEBYE,测试
当我打印出rowArray时,我发现结果包含“
“你好,婴儿”
如何删除
- (IBAction)importToDatabase:(id)sender {
NSString *csvFilePath = [NSString stringWithFormat:@"%@/Documents/%@",NSHomeDirectory(),@"test1.csv"];
if([[NSFileManager defaultManager] fileExistsAtPath:csvFilePath])
NSLog(@"Exist");
else
NSLog(@"NOT EXIST");
NSArray *rowArray = [NSArray arrayWithContentsOfCSVFile:csvFilePath];
NSLog(@"%@",[[rowArray objectAtIndex:0]objectAtIndex:0]);
}
答案 0 :(得分:0)
您可以使用函数stringByReplacingOccurrencesOfString:withString:
将"
替换为空字符串(请参阅documentation)。如果可以访问方法arrayWithContentsOfCSVFile:
的代码,你可以在那里进行,如果没有,你将不得不迭代抛出数组的值来删除它。