in reply to perl and websites

Yes, Perl should be sufficiently powerful to output JSON from your format, seeing as you have it in a parsed format already. Convert your bib format into an equivalent of the format the JSON needs to be in and use one of the JSON modules on CPAN to output it, i.e. a hashref like this:
{ name => 'Sigma 1', publication_date => '1997', pages => [ 3, 4 ] }

would be return by JSON's to_json function as:
{"publication_date":"1997","name":"Sigma 1","pages":[3,4]}

For more details on perl data structures (arrays, hashes, arrayrefs, hashrefs) read perldsc.

Replies are listed 'Best First'.
Re^2: perl and websites
by cedance (Novice) on Aug 24, 2009 at 10:28 UTC
    wow, I din't know about existing JSON converters. This is awesome. I don't have to communicate with the website. I will try this and verify the result with the original case. Thank you so much. best, arun.