C/C++ Parser/Tokenizer

Samuel R. Blackburn sblackbu at erols.com
Wed Jul 22 03:06:09 BST 1998


If you want source code, take a look at the XML classes
in the freeware Win32 Foundation Classes (WFC) library.
It is a non-validating parser.

http://ourworld.compuserve.com/homepages/sam_blackburn/wfc.htm

HTH,

Sam

-----Original Message-----
From: Frank Rachel <frachel at BeaconSoftware.com>
To: xml-dev at ic.ac.uk <xml-dev at ic.ac.uk>
Date: Tuesday, July 21, 1998 7:31 PM
Subject: C/C++ Parser/Tokenizer


>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)


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