Mega Code Archive

 
Categories / XML Tutorial / XSLT StyleSheet
 

Match parent and select grand-children

File: Data.xml <wine grape="Las">   <winery>Moti</winery>   <year>1998</year>   <prices>     <list>13.99</list>     <discounted>11.99</discounted>     <case>143.50</case>   </prices> </wine> File: Transform.xslt <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"   version="1.0">   <xsl:output method="xml" omit-xml-declaration="yes" indent="no" />   <xsl:template match="wine">     <xsl:value-of select="prices/retail" />   </xsl:template>    </xsl:stylesheet>