Top "Xml-parsing" questions

An XML parser goes through text documents containing XML trees and allows the information in the hierarchy to be used.

Python SVG parser

I want to parse an SVG file using python to extract coordinates/paths (I believe this is listed under the "…

python xml svg xml-parsing cnc
How to escape ampersand (&) in soap UI

I am using soap UI (from smartbear) to send soap requests in xml format as : <soapenv:Envelope xmlns:soapenv="…

xml soap xml-parsing soapui
Parsing XML Elements using TinyXML

UPDATE: Still not working :( I have updated the code portion to reflect what I currently have. This should be a …

c++ xml xml-parsing tinyxml
How to select multiple nodes in different levels?

Having this (simplified) XML: <?xml version="1.0" encoding="UTF-8"?> <kml> <Document> <Placemark> <…

xml xpath xml-parsing
Geting xml data using xml parser expat

I have managed to parse ok. But now I am having trouble getting the values that I need. I can …

c xml-parsing expat-parser
How to use NSXMLParser to parse parent-child elements that have the same name

Does anyone have some idea how to parse the following xml using event-driven model NSXMLParser class? <Node> <…

iphone objective-c nsxmlparser xml-parsing
Howto let the SAX parser determine the encoding from the xml declaration?

I'm trying to parse xml files from different sources (over which I have little control). Most of the them are …

java xml encoding sax xml-parsing
Retrieve the value of a XML attribute in VBS

<Requirement Description="description" Operation="Configure"> <Action ID="1000" Name="Split"> <Contract> <Parameter Name="Version"&…

vbscript xml-parsing xml-attribute
xpath find node that does not contain child

I'm trying to create some xpath that will find all a tags that do not contain img tags, so that …

xpath html-parsing xml-parsing
Difference between "findAll" and "find_all" in BeautifulSoup

I would like to parse an HTML file with Python, and the module I am using is BeautifulSoup. It is …

python xml-parsing html-parsing beautifulsoup