The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
31 views

How do you convert a CSV file into a 2D array in Java or C++ [migrated]

My question title didn't fully outline my question. I have a text file that has many lines of data with each line in the following format: a, date, b, c, d, Username, e, Description a,b,c,d, and e ...
4
votes
4answers
779 views

Can the csv format be defined by a regex?

A colleague and I have recently argued over whether a pure regex is capable of fully encapsulating the csv format, such that it is capable of parsing all files with any given escape char, quote char, ...
6
votes
4answers
2k views

CSV file generation using Java

We have a requirement in our project to generate a big CSV file every 2 hours using a Java program. This file will have around 60,000 lines (around 120 characters per line). I am not sure about the ...