Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm making an aggregator for restaurants menus in Java. I'm looking for the best way to extract the content of documents formatted in various ways: some restaurants provide an RSS feed, others provide an HTML table, for others you have to compile the result displayed on multiple pages...

What I'm looking for, is a way to describe the transformation necessary to go from the source document to an easily-parsable format. Of course this transformation will have to be different and custom-made for every data source, but that's not a problem.

I know I could write a Java adapter for each restaurant, but I'm looking for a simpler, more standard solution. Basically something like XSLT but more flexible.

Any idea? Thanks for your help.

share|improve this question

1 Answer

up vote 1 down vote accepted

XSLT 2.0 ( simple, standard and more flexible than XSLT 1.0 )

share|improve this answer
Ja! – user357812 Mar 30 '11 at 0:27
+1. Agreed it is. – Flack Mar 30 '11 at 5:49
Also: take a look at Dimitre's page's on functional programming in XSLT: fxsl.sourceforge.net – Steven D. Majewski Mar 30 '11 at 16:08
Ok we're looking into that. – MasterScrat Apr 6 '11 at 12:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.