unconverted_fields? -> bool
[permalink][rdoc][edit]-
パースした結果が unconverted_fields というメソッドを持つ場合に真を返します。そうでない場合は、偽を返します。
require "csv" csv = CSV.new("date1,date2\n2018-07-09,2018-07-10") csv.unconverted_fields? # => nil csv = CSV.new("date1,date2\n2018-07-09,2018-07-10", unconverted_fields: false) csv.unconverted_fields? # => false csv = CSV.new("date1,date2\n2018-07-09,2018-07-10", headers: true, unconverted_fields: true) csv.unconverted_fields? # => true csv.convert(:date) row = csv.readline row.fields # => [#<Date: 2018-07-09 ((2458309j,0s,0n),+0s,2299161j)>, #<Date: 2018-07-10 ((2458310j,0s,0n),+0s,2299161j)>] row.unconverted_fields # => ["2018-07-09", "2018-07-10"]
[SEE_ALSO] CSV.new