1The Expat XML Parse Instruction
2=============================
3
4Expat is an XML parser library written in C which be used for parse XML documents.
5
6It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document.
7
8It can parse some larger files.
9
10-   Expat XML Parser support many different processor, but for the most part function you only need the following functions:
11
12    **XML_ParserCreate**: Create a new parser object
13
14    **XML_SetElementHandler**: Set handlers for start and end tags
15
16    **XML_SetCharacterDataHandler**: Set handler for text
17
18    **XML_Parse**: Pass a buffer full of document to the parser
19
20More information about Expat library can be found on http://expat.sourceforge.net
21
22An introductory article on using Expat is available on http://xml.com
23