0

这是我的代码,csv文件是
“Hello,Baby”,Testing
ByeBye,Testing

当我打印出 rowArray 时,我发现结果包含“
“Hello,Baby”

我怎样才能删除它

- (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]);

}
4

1 回答 1

0

您可以使用该函数stringByReplacingOccurrencesOfString:withString:将 替换"为空白字符串(请参阅文档)。如果可以访问该方法的代码,则arrayWithContentsOfCSVFile:可以在其中执行此操作,否则,您将不得不迭代抛出数组的值以将其删除。

于 2013-04-14T10:26:36.927 回答