Code Monkey home page Code Monkey logo

Comments (8)

kou avatar kou commented on July 21, 2024 2

OK.
We don't accept nil for col_sep:.

from csv.

kou avatar kou commented on July 21, 2024

It's not intended but could you show any useful use case for col_sep: nil?

from csv.

beauraF avatar beauraF commented on July 21, 2024

I don't have a particularly good example. But that the lib "crash" does not seem to me desirable. Go back to the previous behavior, or handle the col_sep: nil with an ArgumentError seems more better to me.

from csv.

crondaemon avatar crondaemon commented on July 21, 2024

I have a use case for col_sep: nil, but I don't know if it is sound. I want to parse different sources, csv and flat files. I'm showing you a couple of examples. A csv file:

field1, field2
abc, def

and a flat file.

ghi
jk,l

The flat file includes the comma. To handle those 2 files (think not 2 files but tens of files csv and flat), I'd like to use the csv parser, passing col_sep: nil when reading the flat file. In this case nil would mean "I don't want a column separator". Is this a valid use case in your opinion?

from csv.

kou avatar kou commented on July 21, 2024

I think that File.foreach("flat.txt", chomp: true) {|line| ...} should be used for the flat file.
We should use the csv library only for a CSV (family) file. :-)

from csv.

crondaemon avatar crondaemon commented on July 21, 2024

Yes, there are a bunch of methods to process a text file. However, a flat file can be considered a CSV with a single column and without an header. If you code is fed by both "real" csv and "semi" csv (flat files), the idea to have a single piece of code that handle them all could bo profitable.

from csv.

kou avatar kou commented on July 21, 2024

I don't want to recommend the "flat file is a CSV file" approach...
It will confuse many programmers...

from csv.

crondaemon avatar crondaemon commented on July 21, 2024

I know, that was just to share a possible approach and to share some feedback.

from csv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.