Question

it can be any language.

is there a library, software, or plugin that will convert the csv to the various formats?

Was it helpful?

Solution

I'd just use the dynamic language of my choice. Most of them have a CSV library and libraries to generate the output you want. Just a few lines and you have written it yourself.

OTHER TIPS

here is a product that converts CSV to other formats/

You could just sed and awk to do the same.

I agree with developing your own library since there is always more/custom work to be done; An idea would be to firstly create a process of importing a CSV file into a database. Once its in the database you can easily query and output using the database or using a programming language.

I just want to add, you can use phpmyadmin of wamp server if you need to import well formatted csv format into mysql database.

There is a nice generic library in perl for doing conversions and treating a bunch of differenct formats (XML, CSV, HTML etc) as hashes. Even extends to direct treatment (DBI) as table data.

AnyData https://metacpan.org/pod/AnyData

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top