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