类 Object
公共实例方法
CSV(*args, **options, &block) 点击切换源代码
将 args
传递给 CSV::instance
。
CSV("CSV,data").read #=> [["CSV", "data"]]
如果给出了块,则该实例会被传递该块,并且返回值将成为该块的返回值。
CSV("CSV,data") { |c| c.read.any? { |a| a.include?("data") } } #=> true CSV("CSV,data") { |c| c.read.any? { |a| a.include?("zombies") } } #=> false
也可以给出 CSV
的选项。
io = StringIO.new CSV(io, col_sep: ";") { |csv| csv << ["a", "b", "c"] }
此 API 不是 Ractor 安全的。
# File csv-3.3.2/lib/csv.rb, line 3011 def CSV(*args, **options, &block) CSV.instance(*args, **options, &block) end