quote_char -> String
[permalink][rdoc][edit]-
フィールドをクオートするのに使用する文字列を返します。
require "csv" csv = CSV.new("header1,header2\nrow1_1,row1_2", quote_char: "'") csv.quote_char # => "'"
[SEE_ALSO] CSV.new
quote_char -> String
[permalink][rdoc][edit]フィールドをクオートするのに使用する文字列を返します。
require "csv"
csv = CSV.new("header1,header2\nrow1_1,row1_2", quote_char: "'")
csv.quote_char # => "'"
[SEE_ALSO] CSV.new