import kxml.xml; char[]xmlinput = "
Invisibility Cream 14.50 Makes you invisible Levitation Salve 23.99 Levitate yourself for up to 3 hours per application
Blork and Freen Instameal 4.95 A tasty meal in a tablet; just add water Grob winglets 3.56 Tender winglets of Grob. Just add water
"; void main() { auto root = readDocument(xmlinput); auto firstitem = root.parseXPath("inventory/section/item")[0]; foreach(price;root.parseXPath("inventory/section/item/price")) { std.stdio.writefln("%s",price.getCData); } auto namearray = root.parseXPath("inventory/section/item/name"); }