Giter Club home page Giter Club logo

xmlparser's Introduction

this is a simple xml parser

    to use it , yiu should include its header file

    run the make command and:
    release the files in dir include to your include dir and the files in libs to your libs dir 

write your code like this

#include <...>
...
#include <xml.h>

int main(int argc,char * argv[]) 
{
    xml doc;
    /* parse from file */
    doc.parse_file(your_xml_path);
    /* parse from string */
    doc.parse(xml_string);

    *after finish the parse, we can get the nodes or attribute message like fellows:

       
    /** get the declaration of xml :
    * <?xml ... ?>
    **/
    node header = doc.header();
    string version = header["version"];
    printf("version:%s\n", version.c_str());

    but not :
    printf(doc.header()["version"]);
    return 0;
}

when you finished your code, don't forget the option of compile : -lxml

xmlparser's People

Contributors

newncy avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.