Note: This article has also featured on geeksforgeeks.org .
This article focuses on how one can parse a given XML file and extract some useful data out of it in a structured way.
First of all, what is XML?
XML stands for eXtensible Markup Language. It was designed to store and transport data.
It was designed to be both human- and machine-readable.That’s why, the design goals of XML emphasize simplicity, generality, and usability across the Internet.
The XML file to be parsed in this tutorial is actually a RSS feed.Read More »
