tags:

views:

28

answers:

1

I want to convert a discussion group (www.twoplustwo.com) to an RSS feed.

What is the easiest way to do that?

Similar question: http://stackoverflow.com/questions/2251937/scraping-a-non-rss-page-to-generate-a-feed

+2  A: 

You can use jsoup html parser to get data if you use Java. With jsoup you can use css selectors to select html elements.

http://jsoup.org/

newbie