0

CHCSV パーサーを使用する場合: https ://github.com/davedelong/CHCSVParserのこのコードから:

NSArray *a = [[NSArray alloc] initWithContentsOfCSVString:lunchFile
                                                         encoding:NSUTF8StringEncoding
                                                            error:&err];

以下の配列を取得します

(
        (
        Date,
        Item,
        Desc
        "price#",
        "add#",
        rate,
        "",
        ""
    ),
        (
        "12/10/12",
        abc,
        "abc equipment",
        abc678,
        "Y.7.A",
        "555,007.21",
        "",
        ""
    ),

各フィールドから値を取得するにはどうすればよいですか?.最初の行は列名で、sqlite db を入力する必要があります。fmdb を使用して sqlite.db のフィールドを取り出しています。よろしくお願いします。

4

1 に答える 1

0

それを見つけた :

NSArray *s1 =  [a objectAtIndex:4];


 NSLog(@"  element :  %@", [s1 componentsJoinedByString:@","]);    

    for (NSUInteger i = 0; i < s1.count; i++) {
        NSString* string = [s1 objectAtIndex:i];
         NSLog(@" This is : %d  %@",i , string);

    }
于 2012-12-20T19:19:23.600 に答える