rapidxml

October 18, 2019 ยท View on GitHub

A XML Parsing library for D Programming Language. Ported from C++ rapidxml.

Example


import rapidxml;

import stdio;

void main()
{
    auto doc = new xml_document;

    string xml = "<single-element/>";

    doc.parse(xml);

    auto node = doc.first_node();

    writeln(node.m_name);

    doc.validate();
}