=============================================================
this question has been posted to the xindice dev. forum also.
=============================================================

hi there,

using an xpath query returns a lot more information than what's actually
required. example, given an element that looks like this:

<aaa>
        <bbb>
        <ccc value = "Hello">
</aaa>

and an xpath query like this:
"//ccc [EMAIL PROTECTED]"

will return a big result like this:

<aaa xmlns:src="http://xml.apache.org/xindice/Query"; src:col="/db/zzz/yyy"
src:key="eee">
 <ccc value="Hello" />
</aaa>

all i am interested in is the value of the attribute "value" (Hello). how
can i get JUST that directly, and nothig else? i do not want to parse the
DOM for this.

TIA,
-nani

Reply via email to