Quantcast
Channel: Filtering/Simplifying rss feeds (downloaded to string format) in C# - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by War Gravy for Filtering/Simplifying rss feeds (downloaded to string...

LINQ and XDocument was more straight forward to use and solved the solution. Here is what the solution I used looks like for anyone coming here that is trying to limit the amount of errors they get...

View Article



Answer by jan.h for Filtering/Simplifying rss feeds (downloaded to string...

RegEx is not a suitable tool for modifying XML documents. What you're trying to do is a transformation, and there is a standardised technology for transforming XML documents: XSLT. All required types...

View Article

Filtering/Simplifying rss feeds (downloaded to string format) in C#

I'm currently using the following method to read in rss feeds: if (!String.IsNullOrEmpty(rawxml) && rawxml.Contains("<rss"))//RSS Feeds { using (StringReader sr = new StringReader(rawxml)) {...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images