Advertisement
Fhernd

XsltPersonasXml.xsl

Sep 5th, 2014
2,921
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.48 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3.     <xsl:output method="xml" indent="yes" />
  4.     <xsl:template match="/personas">
  5.         <root>
  6.             <xsl:apply-templates select="persona" />
  7.         </root>
  8.     </xsl:template>
  9.     <xsl:template match="persona">
  10.         <nombre usuario="{@usuario}">
  11.             <xsl:value-of select="nombre" />
  12.         </nombre>
  13.     </xsl:template>
  14. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement