Project

General

Profile

Actions

Feature #12839

closed

CSV - Give not nil but empty strings for empty fields

Added by 5.5 (5 5) over 7 years ago. Updated about 6 years ago.

Status:
Closed
Target version:
-
[ruby-core:77623]

Description

The CSV parser gives nil for empty fields.

require "csv"

CSV.parse(%|,""|) #=> [[nil, ""]]

The above behavior maybe be suitable for certain programmers, but I hope to get [["", ""]].

So I had used to write the following code reluctantly till Ruby 2.1:

require "csv"

CSV.parse(%|,""|, converters: lambda{|v| v || ""})
#=> [["", ""]]

It is wasteful, but certainly works for my purpose.

However, because of #11126, the above code does not work from Ruby 2.2.
(Converters are not called for nil)

I merely want an option, which makes the CSV parser give empty strings for empty fields.

Namely,

require "csv"

CSV.parse(%|,""|, string: true) #=> [["", ""]]

Related issues 1 (0 open1 closed)

Related to Ruby master - Bug #11126: CSV field converters doesn't attempt to convert nil value.Closedhsbt (Hiroshi SHIBATA)Actions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0