www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - XML Parser?

reply Graham MacDonald <grahamamacdonalad gmail.com> writes:
What's the best choice for a (preferably fast & simple!) xml parser for D?

Thanks.
Jan 15 2007
next sibling parent "Frank Benoit (keinfarbton)" <benoit tionex.removethispart.de> writes:
Graham MacDonald schrieb:
 What's the best choice for a (preferably fast & simple!) xml parser for D?
 
 Thanks.
I know of these pure D xml parsers: the xml parsers in the mango project. the xml parser in the enki project on dsource.org.
Jan 15 2007
prev sibling parent reply Lutger <lutger.blijdestijn gmail.com> writes:
Graham MacDonald wrote:
 What's the best choice for a (preferably fast & simple!) xml parser for D?
 
 Thanks.
I was quite happy with XML sax api in mango, easy and very fast (if it fits with your needs of course).
Jan 15 2007
parent reply Laurent Dubuisson <skaith_a yahoo.com> writes:
Hi,

Sax parser very easy parser to implement.

As anyone implemented Dom one ?

Regards,
Laurent.
Jan 16 2007
parent reply KlausO <oberhofer users.sf.net> writes:
Laurent Dubuisson schrieb:
 Hi,
 
 Sax parser very easy parser to implement.
 
 As anyone implemented Dom one ?
 
 Regards,
 Laurent.
Wiki4D is your friend :-) See http://www.prowiki.org/wiki4d/wiki.cgi?AllLibraries/XmlLibraries
Jan 16 2007
next sibling parent Laurent Dubuisson <skaith_a yahoo.com> writes:
KlausO wrote:

 Wiki4D is your friend :-)
 See
 
 http://www.prowiki.org/wiki4d/wiki.cgi?AllLibraries/XmlLibraries
Thanks, I used t to locate the Mango tree :-) I'm more on see the example/extrapolate and use. Then if you have more example of Dom parser I will be glad :-) Cheers, Laurent.
Jan 16 2007
prev sibling parent Graham MacDonald <grahamamacdonalad gmail.com> writes:
KlausO wrote:
 Laurent Dubuisson schrieb:
 Hi,

 Sax parser very easy parser to implement.

 As anyone implemented Dom one ?

 Regards,
 Laurent.
Wiki4D is your friend :-) See http://www.prowiki.org/wiki4d/wiki.cgi?AllLibraries/XmlLibraries
Yup, I noticed that and went for TinyXML LED instead. Nice and small, no libraries to bind to, so was pretty much ideal. Thanks, g
Jan 16 2007