Advertisement
Guest User

george...

a guest
Mar 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:template match="/">
  4. <LlistaPais>
  5. <xsl:copy>
  6. <xsl:for-each select="//country[@area>2000 and 10000>@area]">
  7. <xsl:copy>
  8. <xsl:attribute name="Nombre">
  9. <xsl:value-of select="@name"/>
  10. </xsl:attribute>
  11. </xsl:copy>
  12. </xsl:for-each>
  13. </xsl:copy>
  14. </LlistaPais>
  15. </xsl:template>
  16.  
  17. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement