0

csv から取得した文字列は次のとおりです。

string input = "Volume,447,\"4,325\",142,144";

配列行に必要なもの:

447
4,325
142
144

私が試したこと:

string[] volumes;
if (input.Contains(",\"")) // if they're all double value, it works
     volumes = input.Split(new[] {",\""}, StringSplitOptions.None);
else
     volumes= input.Split(','); // if they're all integer value it works
else
     // what to do if they have both double and integer?
4

1 に答える 1

1

次のコードをコンパイルするには、Microsoft.VisualBasic (C# でコーディングする場合はイベント) を参照する必要があります。

    private string[] ParseCsv(string line)
    {
        var parser = new TextFieldParser(new StringReader(line));
        parser.TextFieldType = FieldType.Delimited;
        parser.SetDelimiters(",");
        while (!parser.EndOfData)
        {
            return parser.ReadFields();
        }
        parser.Close();
        return new string[0];
    }
于 2013-07-20T21:43:17.803 に答える