使用全局变量

时间:2011-02-24 07:50:58

标签: xslt

这是我输入的部分内容。

<w:tc> 
   first 
</w:tc> 
<w:tc> 
   second 
</w:tc> 

我使用的是xslt1.0,我的模板是

<xsl:template match="tc"> 
  <!-- When the first match occurs, i am setting a value for a 
       global variable and when the template matches for second time, 
       i have to fetch the value from that variable -->  
</xsl:template>