Remark : 반복된 노드 함수화 하기 / foreach 구문 포함
1 2 3 |
<xsl:apply-templates select="*[local-name()='AirPricingInfo']" /> |
1 2 3 4 5 |
<xsl:template match="*[local-name()='AirPricingInfo']"> <xsl:value-of select="@ApproximateTotalPrice"/> </xsl:template> |