[
Lists Home |
Date Index |
Thread Index
]
- From: "V Kalyana Chakravarthy" <vkalyan@wipsys.stph.net>
- To: <xml-dev@ic.ac.uk>
- Date: Mon, 28 Jun 1999 20:36:06 +0530
Hi
I have started using expat parser very recently and I have XML file which
looks like this
<!DOCTYPE flights [
<!ELEMENT flights (itinerary)+>
<!ELEMENT itinerary (a, b, c)>
<!ELEMENT a (#PCDATA)>
<!ELEMENT b (#PCDATA)>
<!ELEMENT c (#PCDATA)>
]>
<flights>
<itinerary>
<a>A data 0</a>
<b>B data 0</b>
<c>C data 0</c>
</itinerary>
<itinerary>
<a>A data 1</a>
<b>B data 1</b>
<c>C data 1</c>
</itinerary>
</flights>
I have set a character data handler to trap the char data between the start
and end tags, but the callback is called for every subsequent call to start
handler. I want to handle only on the occurance of genuine char data
between the start and end tags. Can someone suggest a solution for my
requirement.
regards,
Kalyan
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|