tags:

views:

62

answers:

3

it can be any language.

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

A: 

here is a product that converts CSV to other formats/

You could just sed and awk to do the same.

Andrew Keith
No, you can't use sed and awk for general CSV files. Only specific to your application where you know that there are no "special" cases like a "," inside a field, etc.
stesch
so this hasn't been done yet ?
gwegaweg
A: 

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.

stesch
A: 

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.

Mark Redman