gpt4 book ai didi

ruby - 字符串无法写入 CSV 文件 Ruby

转载 作者:数据小太阳 更新时间:2023-10-29 08:18:20 25 4
gpt4 key购买 nike

我不一定理解为什么这段代码不正确。我了解该字符串类中的错误没有方法映射。但是我很难解决这个错误。

错误

`<<': undefined method `map' for #<String:0x000001020b8940> (NoMethodError)

代码的但是

require 'nokogiri'
require 'open-uri'
require 'csv'

doc = Nokogiri::HTML(open("dent-file.html"))

new_array = doc.search("p").map do |para|
para.text
end

CSV.open("dent.csv", "w") do |csv|
new_array.each do |string|
csv << string
end
end

我想将 newdoc 数组的每个元素写入 csv 文件 dent.csv 的每一行。

最佳答案

CSV#<< 接受数组或 CSV::Row .将字符串转换为数组。

csv << [string]

关于ruby - 字符串无法写入 CSV 文件 Ruby,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25467918/

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