Guest User

Untitled

a guest
Jan 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <Book>
  2. <Title>Harry Potter</Title>
  3. <editorial>M<previous>Sort</previous></editorial>
  4. <languaje>ESP<previous>EU</previous></languaje>
  5. <nationality>ESP</nationality>
  6. </Book>
  7.  
  8. <languaje>
  9. <xsl:value-of select="Book/languaje"/>
  10. </languaje>
  11.  
  12. <xsl:value-of select="Book/languaje"/>
  13.  
  14. <xsl:value-of select="Book/languaje/text()" />
  15.  
  16. <xsl:for-each select="Book/languaje/text()">
  17. <xsl:value-of select="."/>
  18. </xsl:for-each>
  19.  
  20. <xsl:apply-templates select="Book/languaje/text()" />
  21.  
  22. <xsl:apply-templates select="Book/languaje" />
  23.  
  24. <!-- And on the template level the following -->
  25. <xsl:template match="languaje/previous" />
  26.  
  27. 'ESP'+'' = 'ESP'
Add Comment
Please, Sign In to add comment