Light weight C++ SAX XML parser

前端 未结 3 1659
难免孤独
难免孤独 2021-02-04 11:24

I know of at least three light weight C++ XML parsers: RapidXML, TinyXML and PugiXML. However, all three use a DOM based interface (ie, they build their own in-memory representa

3条回答
  •  渐次进展
    2021-02-04 12:07

    I've used expat when I needed to parse XML. It's very light-weight (well, it used to be; it's a while since I've done XML stuff) and does the job.

提交回复
热议问题