rapidxml 1.0.0

A xml parsing library for D programming language.


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

rapidxml

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();
}
Dependencies:
none
Versions:
1.0.0 2019-Oct-18
~master 2019-Oct-18
Show all 2 versions
Download Stats:
  • 0 downloads today

  • 1 downloads this week

  • 1 downloads this month

  • 34 downloads total

Score:
1.3
Short URL:
rapidxml.dub.pm