Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
- <xsl:output method="xml" indent="yes" />
- <xsl:template match="/personas">
- <root>
- <xsl:apply-templates select="persona" />
- </root>
- </xsl:template>
- <xsl:template match="persona">
- <nombre usuario="{@usuario}">
- <xsl:value-of select="nombre" />
- </nombre>
- </xsl:template>
- </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement