Im trying on various sources but i count see a single tutorial or piece of code. Im a beginner . thanks in advance
I also encountered troubles when I wanted to parse XML then there is a quick example to achieve it.
In one of my project, I used xml2js.
Install it and then you can, for example, use it like this:
parseXML : any = require('xml2js');
this.parseXML.parseString(xmlToParse, (err: any, res: any) => {
console.log(res); //res contains your parsed XML
}