I've got this structure:
...
<site>
<menu>
<first>AAA
<one>1</one>
<one>2</one>
<one>3</one>
<one>4</one>
<one>5</one>
</first>
<first>BBB
<one>1</one>
</first>
<first>CCC
<one>1</one>
<one>2</one>
</first>
<first>DDD
<one>1</one>
<one>3</one>
</first>
</menu>
</site>
...
How can I extract values of <first> elements but not the values of <one>.
the return result must be: AAA, BBB, CCC, DDD. I did this:
...
<xsl:for-each select="/site/menu//first">
<xsl:value-of select="."/>
</xsl:for-each>
...
and got everything which is not the objective. What's wrong?