I want to parse strings in an XML file.
Example:
<TestOptions>
<Testing>
<Tester>GETME</Tester>
</Testing>
</TestOptions>
What I want to do is get the "GETME" contents there between the <Tester> tags.
I've Googled, searched this forum + others and came up with A LOT of results such as Xerces, Chilkat, TinyXML, LiteXML, LibXML++, IBM, Oracle, CodeProject, CodeGuru articles, etc. but I couldn't fully figure out how to actually piece it all together for a fully-functional project.
Are there any small, simple-to-understand projects around? Such as below:
xml->Load("testfile.xml");
xml->BlahBlah("Tester");
xml->Read(); //return contents between <Tester> tags
Something THAT simple, maybe? :lol:
Thanks in advance.