42BV / CSVeed

Light-weight, easy-to-use Java-based CSV utility
Apache License 2.0
100 stars 22 forks source link

Use ',' instead of ';' as separator without constructor setup class #81

Open arnaudroger opened 7 years ago

arnaudroger commented 7 years ago

see https://www.ietf.org/rfc/rfc4180.txt

robert-bor commented 7 years ago

The design choice for that has been elaborated here: http://csveed.org/rfc4180.html#fixed-symbols

hazendaz commented 7 years ago

Is there an easier way to use comma instead of semi-colon that doesn't require constructor setup in classes? Rethorical question maybe as possibly the answer is that we provide a property file drive way to setup defaults across entire usage within a project. Seems like a good idea to me.

arnaudroger commented 7 years ago

That good work, or could provide 2 factory method comma() and semicolon() to make it more explicit.

hazendaz commented 7 years ago

BuilderPattern option. I'll take a look at implementing something like that unless anyone else wants to chip in some time ;)