开发者

XSL numeric generate-id()

开发者 https://www.devze.com 2022-12-28 04:40 出处:网络
How can XSL generate a unique id attribute for every element in an XML document using XSL where the id must be numeric?

How can XSL generate a unique id attribute for every element in an XML document using XSL where the id must be numeric? The XLS below works except that the generated ids are alphanumeric and I need numeric?

<?xml version='1.0' encoding='utf-8'?>  
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
    xmlns:msxsl='urn:schemas-microsoft-com:xslt' exclude-result-prefixes='msxsl'>  
    <xsl:output method='xml' indent='yes'/>  
    <xsl:template match='*'>  
      <xsl:copy>  
        <xsl:attribute name='ElementID'>  
          <xsl:value-of select='generate-id()'/>  
        </xsl:开发者_StackOverflow社区attribute>  
        <xsl:apply-templates/>  
      </xsl:copy>  
    </xsl:template>    
</xsl:stylesheet>  

Thank you.


You can always use:

     concat(count(ancestor::node()),
           '00000000',
           count(preceding::node()))

Knowledgeable people such as Michael Kay warn that <xsl:number/> is not efficient (sometimes O(N^2)) and should be avoided if possible.


Switching using number() with level and count seems to have done the trick.

Thank you

<?xml version='1.0' encoding='utf-8'?>
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
    xmlns:msxsl='urn:schemas-microsoft-com:xslt' exclude-result-prefixes='msxsl'>
    <xsl:output method='xml' indent='yes'/>
    <xsl:template match='*'>
      <xsl:copy>
        <xsl:attribute name='ElementID'>
          <xsl:number level='any' count='*' />
        </xsl:attribute>
        <xsl:copy-of select="@*"/><!--copy of existing all attributes-->
        <xsl:apply-templates/>
      </xsl:copy>
    </xsl:template>  
</xsl:stylesheet>
0

精彩评论

暂无评论...
验证码 换一张
取 消