problem parsing xml (std.xml)
Minas
minas_mina1990 at hotmail.co.uk
Sun May 6 01:59:35 PDT 2012
I'm trying to use std.xml to parse a small snippet of xml (for
now).
This is my code:
[code]
void main(string[] args)
{
string xmlText = "<?xml version=\"1.0\"?>\n" ~
"<book>" ~
" Test" ~
"</book>";
DocumentParser doc = new DocumentParser(xmlText);
doc.onStartTag["book"] = (ElementParser el)
{
writeln("book opening found.");
};
doc.parse();
[/code]
My guess is that it would print "book opening found", but nothing
is printed. I guess I made something wrong(?)
More information about the Digitalmars-d-learn
mailing list