Originally posted by: Descartes
Originally posted by: BingBongWongFooey
What are you using to parse the forums into rss?
A C# class library with a simple ASP.NET frontend that delegates the catid chosen to the class library. I use the following regular expression to extrapolate the topics:
< *a +href *= *\"(messageview[^\"]+)\" class *= *\"ftalternatingbarlinksmall\" *>([^>]+)< */ *a *>
Not really optimized, but it matched correctly in all my tests. I then iterate through all the matches in the HTML and emit the appropriate XML tags for the RSS feed...