XSLT 2.0會很好。 (如果你需要一個XSLT 2.0處理器,我會建議Saxon。)
例如,這個簡單的XML文檔:
<doc>
<foo/>
<bar id="orig-id"/>
</doc>
這XSLT 2.0樣式表:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:param name="threshold" select="10"/>
<xsl:template match="@*|node()" mode="clone">
<xsl:copy>
<xsl:apply-templates select="@*|node()" mode="clone"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/*/bar/@id" mode="clone">
<xsl:param name="doc-id" tunnel="yes"/>
<xsl:attribute name="id" select="$doc-id"/>
</xsl:template>
<xsl:template match="/" name="createDocs">
<xsl:param name="dashNbr" select="1"/>
<xsl:variable name="doc-id" select="concat(generate-id(),'-',$dashNbr)"/>
<xsl:result-document href="{$doc-id}.xml">
<xsl:apply-templates select="/*" mode="clone">
<xsl:with-param name="doc-id" select="$doc-id" tunnel="yes"/>
</xsl:apply-templates>
</xsl:result-document>
<xsl:if test="$threshold > $dashNbr">
<xsl:call-template name="createDocs">
<xsl:with-param name="dashNbr" select="$dashNbr + 1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
產生10個文件具有獨特的id
屬性。文件名是基於id的。
例子:
d1-1.xml
<doc>
<foo/>
<bar id="d1-1"/>
</doc>
d1-2.xml
<doc>
<foo/>
<bar id="d1-2"/>
</doc>
d1-10.xml
<doc>
<foo/>
<bar id="d1-10"/>
</doc>
你只需要改變的值3210參數設置爲要創建的文件數量,並更改要修改的屬性的match
。