C/C++ Parser/Tokenizer
Frank Rachel
frachel at BeaconSoftware.com
Tue Jul 21 20:49:07 BST 1998
I am looking for C or C++ code that I can incorporate in a program to
simply walk through an XML file, and give me the Tag name and its
associated value.
For example:
<person>
<first>Frank</first>
</person>
etc..
I am looking for something that I can basically do
while ( !end_of_xml_file() )
{
get_tag_and_value ( tagname, value );
}
Obviously, it wont be as simple as that, but I think you can grasp what
I am looking for.. We're going to be getting a XML file and simple need
to extract all the data, and map it to our own internal stuff..
So after I get the tag and value, I would do something like:
switch ( tagname )
{
case 'first' :
strcpy ( my_struct.first_name, value, length );
break;
}
etc..
Any help would be greatly appreciated. I need it in C/C++ because it has
to be callable from a C program, and be able to be compiled on multiple
platforms..
Thanks,
Frank Rachel
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)
More information about the Xml-dev
mailing list