Duplicate of
I have problem with using XPATH to point to some element in XML. Here is my XML code:
<character>
<name>some name </some name>
</character>
</quote>
<quote>
....
</quote>
</quotes>
and here My XSLT code:
<xsl:for-each select="quotes/quote">
<xsl:value-of select="quotes/quote/character/name"/>
</xsl:for-each>
WHat I try to do is that I try to list the name of character for every quote. BUt this code does not work WOuld you please help me with this problem? Thank you