此问题扩展为previous question。
在上一个问题中,我询问了如何在固定深度的树中置换节点层次结构。例如,对于具有路径/ x / y / z的每个叶子,我希望输出中的叶子具有路径y / x / z。 (排列2,1,3)。
而不是处理定长排列,我现在要做的是排列,如" 2,1,3 ... n-1"
所以我的XSLT现在看起来像这样:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/input">
<output>
<xsl:apply-templates select="text()"/>
</output>
</xsl:template>
<!-- example 2,1,3:n -->
<xsl:template match="text()">
<xsl:variable name="n" select="5" /> <!-- this should later be the depth of the leaf -->
<xsl:element name="{name(ancestor::*[2])}"> <!-- 2 -->
<xsl:element name="{name(ancestor::*[1])}"> <!-- 1 -->
<xsl:call-template name="loop"> <!-- 3:5 -->
<xsl:with-param name="i" select="3" />
<xsl:with-param name="end" select="$n - 1" />
</xsl:call-template>
</xsl:element>
</xsl:element>
</xsl:template>
<xsl:template name="loop">
<xsl:param name="i" />
<xsl:param name="end" />
<xsl:choose>
<xsl:when test="$i = $end">
<xsl:copy-of select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:element name="{name(ancestor::*[$i])}">
<!-- recursive call -->
<xsl:call-template name="loop">
<xsl:with-param name="i" select="$i+1" />
<xsl:with-param name="end" select="$end" />
</xsl:call-template>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
我甚至不确定这种模板的递归使用是否可以在理论上起作用。我是在正确的轨道上吗?
答案 0 :(得分:1)
我相信一个真正通用的解决方案看起来像这样:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/*">
<output>
<xsl:apply-templates select="//text()"/>
</output>
</xsl:template>
<xsl:template match="text()">
<xsl:call-template name="re-order">
<xsl:with-param name="node-set" select="ancestor::*|." />
<xsl:with-param name="order">2,1,3,</xsl:with-param>
</xsl:call-template>
</xsl:template>
<xsl:template name="re-order">
<xsl:param name="node-set" />
<xsl:param name="order" />
<xsl:param name="i" select="1" />
<xsl:variable name="n" select="count($node-set)" />
<xsl:variable name="p">
<xsl:choose>
<xsl:when test="$order">
<xsl:value-of select="substring-before($order, ',')" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$i" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<xsl:when test="$i < $n">
<xsl:element name="{name($node-set[number($p)])}">
<!-- recursive call -->
<xsl:call-template name="re-order">
<xsl:with-param name="node-set" select="$node-set" />
<xsl:with-param name="order" select="substring-after($order, ',')" />
<xsl:with-param name="i" select="$i + 1" />
</xsl:call-template>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:copy-of select="$node-set[last()]"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
测试输入:
<one>
<two>
<three>3.1</three>
<three>3.2</three>
</two>
<two>
<three>
<four>4.1</four>
<four>4.2</four>
</three>
<three>
<four>
<five>5.1</five>
<five>5.2</five>
</four>
<four>
<five>5.3</five>
<five>5.4</five>
</four>
</three>
</two>
<two>
<three>
<four>
<five>
<six>6.1</six>
<six>6.2</six>
</five>
</four>
</three>
</two>
<two>2.1</two>
<two>2.2</two>
</one>
<强>结果:强>
<?xml version="1.0" encoding="UTF-8"?>
<output>
<two>
<one>
<three>3.1</three>
</one>
</two>
<two>
<one>
<three>3.2</three>
</one>
</two>
<two>
<one>
<three>
<four>4.1</four>
</three>
</one>
</two>
<two>
<one>
<three>
<four>4.2</four>
</three>
</one>
</two>
<two>
<one>
<three>
<four>
<five>5.1</five>
</four>
</three>
</one>
</two>
<two>
<one>
<three>
<four>
<five>5.2</five>
</four>
</three>
</one>
</two>
<two>
<one>
<three>
<four>
<five>5.3</five>
</four>
</three>
</one>
</two>
<two>
<one>
<three>
<four>
<five>5.4</five>
</four>
</three>
</one>
</two>
<two>
<one>
<three>
<four>
<five>
<six>6.1</six>
</five>
</four>
</three>
</one>
</two>
<two>
<one>
<three>
<four>
<five>
<six>6.2</six>
</five>
</four>
</three>
</one>
</two>
<two>
<one>2.1</one>
</two>
<two>
<one>2.2</one>
</two>
</output>
备注强>:
$order
参数中的令牌数量;否则你可能会得到
意想不到的结果。答案 1 :(得分:0)
我希望以下样式表解决问题:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" exclude-result-prefixes="exsl">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- template to match the root element -->
<xsl:template match="/input">
<output>
<!-- looping on text nodes having more than 3 ancestors -->
<xsl:for-each select="//text()[count(ancestor::*) > 3]">
<xsl:apply-templates select="." mode="copy-ancestors">
<xsl:with-param name="doc" select="."/>
</xsl:apply-templates>
</xsl:for-each>
</output>
</xsl:template>
<xsl:template match="node()" mode="copy-ancestors">
<!-- param doc to contain the document generated while traversing in the reverse direction -->
<xsl:param name="doc"/>
<!-- generate temporary document by adding immidiate ancestor's name-->
<xsl:variable name="tempDoc">
<xsl:choose>
<xsl:when test="not(self::*)">
<xsl:copy-of select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:element name="{name(ancestor::*[1])}">
<xsl:copy-of select="exsl:node-set($doc)/node()"/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<!-- the base condition -->
<xsl:when test="count(ancestor::*) = 3">
<xsl:element name="{name(ancestor::*[1])}">
<xsl:element name="{name(ancestor::*[2])}">
<xsl:copy-of select="exsl:node-set($doc)/*"/>
</xsl:element>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="ancestor::*[1]" mode="copy-ancestors">
<xsl:with-param name="doc" select="exsl:node-set($tempDoc)"/>
</xsl:apply-templates>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>