다음과 같은 XML 문서의 경우 : 평가를 얻기 위해 :XSLT 3.0 XSL : 평가 예
<company>
<employee>
<name>John Andrews</name>
<age>23</age>
<salary>4000</salary>
<division>Accounting</division>
</employee>
</company>
나는 XSL에서 $ 테스트 변수를 사용할 수있는 방법
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:value-of select="company/employee/name"/>
<xsl:variable name="test">
<xsl:text>company/employee/name</xsl:text>
</xsl:variable>
<xsl:evaluate xpath="$test"/>
</xsl:template>
</xsl:stylesheet>
같은 XSL을 동일한 결과 :
<xsl:value-of select="company/employee/name"/>
가능합니까?
동일한 결과가 ...? – derloopkat