[
Lists Home |
Date Index |
Thread Index
]
You don't say, but I assume this is XPath.
> I use "./text()" to return all text nodes from the current node.
or just text() would work.
>I need to also return all CData sections from the current node.
there are no CDATA nodes in the XPath data model. CDATA is taken as just
an input convenience to avoid writing < and & as < and &
so
<x>123<![CDATA[456]]>789</x>
the element x has a single text node child consisting of the string
"123456789" there is no record of whether CDATA was used, just as there
is no record of whether " or ' are used to delimit attribute values.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
- References:
- XPath help
- From: "Stephen Stone" <sstone@teltronics.com>
|