当前位置: 首页 > 知识库问答 >
问题:

基于另一节点的值的XSLT更改值节点

邵展
2023-03-14
 <?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>
<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>

共有1个答案

田志
2023-03-14

我将使用以下模板来完成此操作:

<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元素。

 类似资料:
  • 我是Xpath的新手。 假设我有一个xml目录可以将商品导入电子商店: 目录的第一部分是商品类别列表,第二部分是商品列表。每种商品都有一个<代码> 从上面的代码中,我需要得到这样一个好的描述:类别:夹克;标签:D 标签、颜色和尺寸可直接从<代码> 所以我的目标是选择

  • 我很难使用下面的用例。 以下是XML: 我想要实现的是基于节点

  • 我正在尝试处理这个XML文件,我想根据最新的节点值删除所有匹配的节点。在以下示例中,最新节点值为“${DELETE}”,最新节点值将始终为“${DELETE}”,并且该节点将始终位于XML文件的底部。 示例: 预期产出为:

  • 我是XSLT新手,希望能得到一些帮助。 我目前有一个XML,它包含以下格式的多个副本: 我的任务是替换id属性的值。我需要根据代码的数字部分改变这个值。如果值大于850000,格式应该改为USA868509。如果该值小于850000,则将id值更改为仅包括数字。XML中的其余值应保持完全相同。 我目前拥有以下xslt: 我很难确定要更改的值,因为XSLT不执行变量循环。有没有办法更改XSLT以获得

  • 我的目标是在StatusDate为1900-01-01T00:00:00时使用此XSLT样式表删除整个LoanSecondaryStatus节点,但在其他日期时保留该节点。 我有以下XML: 这是我用来尝试删除Loan二级状态节点的XSLT:

  • 我必须查询一个属性值,然后在此基础上从不同的节点找到另一个属性值。 以下是我的XML的外观: 示例:我需要查询的属性值位于第101行。我必须取引用节点的节点id,在这个例子中是“3”: 然后我需要在XML中进一步搜索,它应该找到id="3"的节点,然后寻找名为"长度"的属性,并返回它的值,在这个例子中是"10": 我已经编写了以下XSLT代码,但需要添加更多代码以正确获取长度部分: 请建议如何获得