scala-csv-parser
scala-csv-parser copied to clipboard
CSV parser library.
I have one CSV file that contains one column with email address. I get the following error during parsing : ``` myCsv.csv:3:20 expected (Semis | &"}" | end-of-input) xx;xx;[email protected];xxxx ^...
I like the simplicity of this lib, but there's no column name on my csv, so I'd like to use it without column name. I solve the issue by adding...
There seems to be a limit on how many columns can be parsed which I don't see mentioned in documentation. My case class: ```scala private case class DeckLevelDescriptorFromCsv( levelId: Int,...
Could be split into: * modularizing the code into core (domain/dsl/functional stuff) and backend (current parse whole string at once) * a new backend which would produce an Akka Flow
Can I use Parser inside a polymorphic method like this? ``` def readCsv [A] (str: String) : Queue[A] = { if (!RFile(str).exists) { logger.info(s"File not exists: $str") return Queue.empty[A] }...
It would be great to have Scala 3 support. Unfortunately it'd mean rewriting the `ReadsMacro` - splitting the scala2 and scala3 implementation of that macro is easy enough with https://docs.scala-lang.org/scala3/guides/migration/tutorial-macro-cross-building.html...