gpt4 book ai didi

c# - 如何读取没有标题的 CSV

转载 作者:行者123 更新时间:2023-11-30 22:51:56 25 4
gpt4 key购买 nike

我有一个包含以下数据的 CSV(无标题)

12,2010,76
2,2000,45
12,1940,30

我正在使用以下 CSVReader阅读

using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;

public class CSVReader
{
static string SPLIT_RE = @",(?=(?:[^""]*""[^""]*"")*(?![^""]*""))";
static string LINE_SPLIT_RE = @"\r\n|\n\r|\n|\r";
static char[] TRIM_CHARS = { '\"' };

public static List<Dictionary<string, object>> Read(string file)
{
var list = new List<Dictionary<string, object>>();
TextAsset data = Resources.Load (file) as TextAsset;

var lines = Regex.Split (data.text, LINE_SPLIT_RE);

if(lines.Length <= 1) return list;

var header = Regex.Split(lines[0], SPLIT_RE);
for(var i=1; i < lines.Length; i++) {

var values = Regex.Split(lines[i], SPLIT_RE);
if(values.Length == 0 ||values[0] == "") continue;

var entry = new Dictionary<string, object>();
for(var j=0; j < header.Length && j < values.Length; j++ ) {
string value = values[j];
value = value.TrimStart(TRIM_CHARS).TrimEnd(TRIM_CHARS).Replace("\\", "");
object finalvalue = value;
int n;
float f;
if(int.TryParse(value, out n)) {
finalvalue = n;
} else if (float.TryParse(value, out f)) {
finalvalue = f;
}
entry[header[j]] = finalvalue;
}
list.Add (entry);
}
return list;
}
}

问题是这个 CSVReader 使用 List<Dictionary<string, object>>因此,如果没有 header 信息,则字典键变为 null 或(不太可能)为空字符串。在向字典添加条目时,这两种情况都会导致异常抛出。

我可以将 header 添加到 CSV 文件,但这不是理想的解决方案。

最佳答案

首先,几乎可以肯定有很多现成的库可用于此任务,这些库可能在 NuGet 上可用。其中之一可能是更好的解决方案。

尽管如此,使用您已有的方法,您可以制作该方法的替代版本,该方法返回一个简单的对象列表,并从中删除填充 header 的代码。像这样的东西(未经测试,但我认为它应该有效):

public static List<List<object>> ReadWithoutHeader(string file)
{
var list = new List<List<object>>();
TextAsset data = Resources.Load (file) as TextAsset;
var lines = Regex.Split (data.text, LINE_SPLIT_RE);

if(lines.Length <= 1) return list;

for(var i=0; i < lines.Length; i++) {

var values = Regex.Split(lines[i], SPLIT_RE);
if(values.Length == 0 ||values[0] == "") continue;
var entry = new List<object>();

for(var j=0; j < values.Length; j++ ) {
string value = values[j];
value = value.TrimStart(TRIM_CHARS).TrimEnd(TRIM_CHARS).Replace("\\", "");
object finalvalue = value;
int n;
float f;
if(int.TryParse(value, out n)) {
finalvalue = n;
} else if (float.TryParse(value, out f)) {
finalvalue = f;
}
entry.Add(finalvalue);
}
list.Add(entry);
}
return list;
}

关于c# - 如何读取没有标题的 CSV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58748243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com