Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <xsl:variable name="array1" as="element()*">
  2. <xsl:variable name="one" select="'one'"/>
  3. <xsl:variable name="two" select="'two'"/>
  4. <xsl:variable name="three" select="'three'"/>
  5. </xsl:variable>
  6.  
  7. <xsl:value-of select="$array2[.]"/>
  8.  
  9. <xsl:variable name="array2" as="element()*">
  10. <test>A</test>
  11. <test>B</test>
  12. <test>C</test>
  13. </xsl:variable>
  14.  
  15. <xsl:value-of select="$array2[.]"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement