Select one tag from a list of tags
File: Data.xml <wine grape="chardonnay"> <product>product 2</product> <year>1997</year> <price>10.99</price> </wine> File: Transform.xslt <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="wine"> <xsl:value-of select="price" /> </xsl:template> </xsl:stylesheet> Output: <?xml version="1.0" encoding="UTF-8"?>10.99