Search Results

7
votes
5answers
281 views

How can I access the data in many large CSV files quickly from Perl?

I have a number of scripts that currently read in a lot of data from some .CSV files. For efficiency, I use the Text::CSV_XS …
2
votes

How can I match a quote-delimited string with a regex?

I would suggest: ([\"'])(?:\\\1|.)*?\1 But only because it handles escaped quote chars and allows both the ' and " to be the quote char. I would also suggest looki …
3
votes

How can I access the data in many large CSV files quickly from Perl?

Well, I've taken the suggestion of Sinan Ünür (thanks!) and made an SQLite database and re-run my test program to compare getting the data via CSV files as compared to getting the data out of the S …