xml – XSL数字generate-id()

前端之家收集整理的这篇文章主要介绍了xml – XSL数字generate-id()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
XSL如何使用XSL为 XML文档中的每个元素生成唯一的id属性,其中id必须是数字?
下面的XLS工作,除了生成的ID是字母数字,我需要数字?
<?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:attribute>  
        <xsl:apply-templates/>  
      </xsl:copy>  
    </xsl:template>    
</xsl:stylesheet>

谢谢.

你可以随时使用:
concat(count(ancestor::node()),'00000000',count(preceding::node()))

知识渊博的人如Michael Kay警告说< xsl:number />效率不高(有时是O(N ^ 2)),如果可能应该避免.

原文链接:https://www.f2er.com/xml/292131.html

猜你在找的XML相关文章