topical media & game development
basic-xml-08-Persons2.xsl / xsl
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" >
<xsl:template match="/">
<Persons>
<xsl:apply-templates select="/Persons/Person" />
</Persons>
</xsl:template>
<xsl:template match="Person">
<xsl:copy>
<xsl:element name="FirstName"><xsl:value-of select="@FirstName" /></xsl:element>
<xsl:element name="LastName"><xsl:value-of select="@LastName" /></xsl:element>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.