我有一个XML,类似这样:
<?xml version="1.0" encoding="UTF-8"?>
<earth>
<computer>
<parts>
<cpu>AMD;fast</cpu>
<video>GF</video>
<power>slow</power>
...others
</parts>
<owner>
<name>Frank</name>
<owner>
</computer>
<earth>
我想创建xsl转换(xsl:stylesheet version =&#34; 2.0&#34; xmlns:xsl =&#34; http://www.w3.org/1999/XSL/Transform") 。我的预期结果只有在cpu有符号的情况下才会出现;&#39; - 如果没有&#39;&#39;,那么权力应该改变为价值;&#39;结果应该没有改变
<earth>
<computer>
<parts>
<cpu>AMD</cpu>
<video>GF</video>
<power>fast</power>
...others
</parts>
<owner>
<name>Frank</name>
<owner>
</computer>
<earth>
尝试做这样的事情,但没有运气:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fn="http://www.w3.org/2005/xpath-functions"
exclude-result-prefixes="fn">
<xsl:output encoding="utf-8" method="xml" indent="yes" />
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="parts">
<xsl:choose>
<!-- try test if node name equals 'power' if equals them try make logic
here, this dont work-->
<xsl:when test="name() = 'power'">
<xsl:variable name="text" select="./cpu" />
<xsl:variable name="sep" select="';'" />
<xsl:variable name="powerTable" select="tokenize($text, $sep)" />
<xsl:value-of select="$powerTable[1]" />
</xsl:when>
<!--if not 'power' copy node -->
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:0)
我会使用以下模板来完成此任务:
<xsl:template match="parts[contains(cpu,';')]/power">
<power>
<xsl:value-of select="../cpu/substring-after(.,';')"/>
</power>
</xsl:template>
<xsl:template match="cpu[contains(.,';')]">
<cpu>
<xsl:value-of select="substring-before(.,';')"/>
</cpu>
</xsl:template>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
第一个模板匹配 power
元素,该元素是parts
(parts/power
)的直接子元素,其中 parts
有子元素元素cpu
包含字符;
(parts[contains(cpu,';')]
)。此模板将在字符power
之后输出cpu
元素,其值为;
元素值。
第二个模板匹配包含字符cpu
的 ;
元素,并在字符cpu
之前输出具有初始值的;
元素
另一个模板只是身份模板,我认为你知道这个目的。