Sha256: 8dd9b7b1087d334e1963d283f96ebda952c272d75c2d7d89e8a48632374451ab
Contents?: true
Size: 784 Bytes
Versions: 20
Compression:
Stored size: 784 Bytes
Contents
====== Option +skip_blanks+ Specifies a boolean that determines whether blank lines in the input will be ignored; a line that contains a column separator is not considered to be blank. Default value: CSV::DEFAULT_OPTIONS.fetch(:skip_blanks) # => false See also option {skiplines}[#class-CSV-label-Option+skip_lines]. For examples in this section: str = <<-EOT foo,0 bar,1 baz,2 , EOT Using the default, +false+: ary = CSV.parse(str) ary # => [["foo", "0"], [], ["bar", "1"], ["baz", "2"], [], [nil, nil]] Using +true+: ary = CSV.parse(str, skip_blanks: true) ary # => [["foo", "0"], ["bar", "1"], ["baz", "2"], [nil, nil]] Using a truthy value: ary = CSV.parse(str, skip_blanks: :foo) ary # => [["foo", "0"], ["bar", "1"], ["baz", "2"], [nil, nil]]
Version data entries
20 entries across 20 versions & 4 rubygems