gpt4 book ai didi

ruby-on-rails - Ruby CSV 解析计数列标题

转载 作者:太空宇宙 更新时间:2023-11-03 16:16:14 25 4
gpt4 key购买 nike

我有这个 CSV 文件:

col1,  col2,     col3,     col4, col5
name1, contact1, addr, ess1, zip1, comment1 <==
name2, contact2, address2, zip2, comment2
name3, contact3, address3, zip3, comment3

当我计算列数时:

columns = CSV.read(file_path, headers: true).headers

当第二行(第一条记录/行)的列数多于列标题数时,这将返回较大的数字:6

打印标题:col1、col2、col3、col4、col5、nil

我想正确计算 CSV 列标题,以便将其与每条记录/行的列数进行比较。

columns = CSV.read(file_path, headers: true).headers
logger.info("COLUMN NAMES: #{columns.inspect}")
logger.info("COLUMN COUNT: #{columns.count}")

CSV.foreach(file_path, option) do |row|
# Check if a row columns matches file column headers count
if row.count != columns.count
logger.info("Error: Row count not match.")
File.delete(lock_file)
exit
end
end

我想在保存记录之前将 COLUMN HEADERS COUNTRECORD COLUMNS COUNT 匹配。如果记录的列多于标题,则可能会在记录中的某处出现逗号 ,

这也可能意味着用户提供了无效的记录数据,并且记录列将与数据库表中的每个字段不匹配。

最佳答案

只要您在任何其他行中有额外的列,您的标题中总是会得到 nil,因此,由于第一行中有 6 列,您将得到:

col1, col2, col3, col4, col5, nil

一个解决方案是删除在 headers 数组末尾找到的所有 nil 值,如下所示:

columns = CSV.read(file_path, headers: true).headers
columns.pop while columns.last.nil?

# ...

现在,在您的示例中,您将获得以下 header :

col1, col2, col3, col4, col5

计数将为 5,因此您的代码现在应该可以按预期工作。

关于ruby-on-rails - Ruby CSV 解析计数列标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44192138/

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