我使用TinyCsvParser作为工具,将大型 csv 文件中的行映射到我的数据模型中。所以,问题是我如何才能使用无效的行来为用户显示它?现在它可以与 Regex 一起使用,但我将在更易读的工具上重新编写它。有可能吗?(现在我可以将 TinyCsvParser 更改为任何其他工具,处理大型 csv 文件的速度非常快,并且具有可读的 api)。
现在看起来像: 模型:
public class Item
{
public string Id { get; set; }
public string Description { get; set; }
public string Country { get; set; }
public string Time { get; set; }
public string ErrorDescription { get; set; }
public override string ToString()
=> $"{Id } {Description } {Country} {Time} {ErrorDescription}";
}
解析器:
public class CsvItemMapping : CsvMapping<Item>
{
public CsvItemMapping()
: base()
{
MapProperty(columnIndex: 0, x => x.Id);
MapProperty(columnIndex: 1, x => x.Description );
MapProperty(columnIndex: 2, x => x.Country);
MapProperty(columnIndex: 3, x => x.Time);
MapProperty(columnIndex: 4, x => x.ErrorDescription);
}
}
要解析的代码:
// this is selects ONLY valid lines, that parser mapped to models.
// I want a flag like "Not valid" and display it at the time, when read this line
var csvParserOptions = new CsvParserOptions(skipHeader: true, fieldsSeparator: ',');
var csvMapper = new CsvItemMapping();
var csvParser = new CsvParser<Item>(csvParserOptions, csvMapper);
const string path = @"...";
var result = csvParser
.ReadFromFile(path, Encoding.UTF8)
.Select(x => x.Result)
.ToList();