gwegaweg
gwegaweg

Reputation: 33

library to convert CSV to XML, MYSQL, html, RSS, JSON and etc?

it can be any language.

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

Upvotes: 0

Views: 731

Answers (5)

Mark Washeim
Mark Washeim

Reputation: 101

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

Upvotes: 0

skywalker
skywalker

Reputation: 41

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

Upvotes: 1

Mark Redman
Mark Redman

Reputation: 24535

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.

Upvotes: 0

stesch
stesch

Reputation: 7215

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.

Upvotes: 0

Andrew Keith
Andrew Keith

Reputation: 7563

here is a product that converts CSV to other formats/

You could just sed and awk to do the same.

Upvotes: 0

Related Questions