Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is a portion of my XML:

<MAIN>
    <L>
        <D>string1 string2 <b>string3</b> string4</D>
    </L>
    <L>
        <D>string5 string6 <b>string7</b> string8 <i>string9</i></D>
    </L>
</MAIN>

I want to get the content of all the <D> tags as string. So, the example above should return:

1st iteration: 'string1 string2 <b>string3</b> string4'
2nd iteration: 'string5 string6 <b>string7</b> string8 <i>string9</i>'
etc...

In vtd-xml I used an AutoPilot with XPath "//L/D" and "//L/D/text()" but that did not work.

Any advice or alternative approach will be appreciated.

Regards

share|improve this question
Can't you just use //L which will return a List of nodes. Then for those nodes loop over the direct children and call whatever method returns the Text. – gshauger May 14 '11 at 20:15
Good question, +1. See my answer for a complete and short one-liner XPath expression solution. – Dimitre Novatchev May 15 '11 at 16:46

2 Answers

up vote 4 down vote accepted

Below is the code that does what you are looking for.

    VTDGen vg =  new VTDGen();
    if (vg.parseFile("c://xml//alex.txt", true)){
        VTDNav vn = vg.getNav();
        AutoPilot ap = new AutoPilot(vn);
        ap.selectXPath("//L/D");
        int i=-1;
        while((i=ap.evalXPath())!=-1){
            long l = vn.getContentFragment();
            System.out.println(" -==> "+ vn.toString((int )l, (int)(l>>32)));
        }
    }
share|improve this answer
Thanks very much! This fixed my problem. – Alex May 17 '11 at 21:44
@alex, you are wellcome! – vtd-xml-author May 20 '11 at 9:43

Use:

/*/L/D/node()

This selects all nodes (elements, text-nodes, processing-instructions and comment-nodes) that are children of any D element that is a child of any L element that is a child of the top element of the XML document.

Alternatively, you could select separately all the node-children of the two /*/L/D elements:

/*/L[1]/D/node()

and

/*/L[2]/D/node()

Verification using XSLT as host of XPath:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>

 <xsl:template match="/">
  <xsl:copy-of select="/*/L[1]/D/node()"/>
--------------------
  <xsl:copy-of select="/*/L[2]/D/node()"/>
 </xsl:template>
</xsl:stylesheet>

when applied on the provided XML document:

<MAIN>
    <L>
        <D>string1 string2 
            <b>string3</b> string4
        </D>
    </L>
    <L>
        <D>string5 string6 
            <b>string7</b> string8 
            <i>string9</i>
        </D>
    </L>
</MAIN>

the wanted, correct result is produced:

string1 string2 
            <b>string3</b> string4

--------------------
  string5 string6 
            <b>string7</b> string8 
            <i>string9</i>
share|improve this answer
Thanks for your reply. This did not work. It iterates through the nodes inside the D tags, so on the first D tag it goes to the b tag and on the second D tag it goes first to the b tag and then to the i tag. – Alex May 15 '11 at 17:41
@Alex: if this is the case, then you are not using an XPath compliant implementation -- the node-test node() must select all children of the current node -- not only the elements. I suspect that you only inspect the elements from the resulting node-list when the right action is to inspect all selected nodes. – Dimitre Novatchev May 15 '11 at 17:49
@alex, is it a bug of vtd-xml? – vtd-xml-author May 16 '11 at 2:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.