将 XML 行集与匹配属性合并



我定义了一个类似于以下内容的 xml 行集:

<root>
  <dataset1>
    <rows>
      <row id="0" title="Some Title" lookupValues="1;#Something1;#2;#Something2"/>
      <row id="1" title="Some other title" lookupValues="1;#Something1;#3;#Something3"/>
    </rows>
  </dataset1>
  <dataset2>
    <rows>
      <row id="1" lookupValue="Something1" anotherValue="ThisOne"/>
      <row id="2" lookupValue="Something2" anotherValue="ThatOne"/>
      <row id="3" lookupValue="Something3" anotherValue="TheOtherOne"/>
      <row id="4" lookupValue="Not Something"/>
    </rows>
  </dataset2>
</root>

我正在尝试转换为更像下面的格式:

<newroot>
  <rows>
    <row uniqueid="1" id="0" title="Some Title" lookupValue="Something1" anotherValue="ThisOne"/>
    <row uniqueid="2" id="0" title="Some Title" lookupValue="Something2" anotherValue="ThatOne"/>
    <row uniqueid="3" id="1" title="Some other title" lookupValue="Something1" anotherValue="ThisOne"/>
    <row uniqueid="4" id="1" title="Some other title" lookupValue="Something3" anotherValue="TheOtherOne"/>
  </rows>
</newroot>

请注意重复的行;这是应用程序的要求。另请注意删除丢失的查找值行。

有谁知道实现这种转变的真正有效方法吗?

谢谢。

更新:我应该更清楚我想要完成什么。我添加了一些信息以更好地说明我正在寻找的合并类型。

更新2:给出的答案可能有效,除了原始数据集中存在错误;即lookupValues属性的格式。分隔符略有不同,因为源 XML 除了包含实际查找文本外还包含索引号。

这一切都非常简单,除了为每个新行生成一个唯一的 id 值。为此,恐怕您必须执行两次传递:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
extension-element-prefixes="exsl">
<xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes"/>
<xsl:key name="dataset2" match="row" use="@lookupValue" />
<xsl:variable name="new-rows">
    <xsl:for-each select="/root/dataset1/rows/row">
        <xsl:call-template name="generate-rows">
            <xsl:with-param name="values" select="@lookupValues"/>
        </xsl:call-template>
    </xsl:for-each>
</xsl:variable>
<xsl:template match="/">
    <newroot>
        <rows>
            <xsl:for-each select="exsl:node-set($new-rows)/row">
                <xsl:copy>
                    <xsl:attribute name="uniqueid">
                        <xsl:value-of select="position()"/>
                    </xsl:attribute>
                    <xsl:copy-of select="@*"/>
                </xsl:copy>
            </xsl:for-each>
        </rows>
    </newroot>
</xsl:template>
<xsl:template name="generate-rows">
    <xsl:param name="values"/>
    <xsl:param name="delimiter" select="';'"/>
    <xsl:variable name="token" select="substring-before(concat($values, $delimiter), $delimiter)" />
    <row id="{@id}" title="{@title}" lookupValue="{$token}" anotherValue="{key('dataset2', $token)/@anotherValue}"/>
    <xsl:if test="contains($values, $delimiter)">
        <!-- recursive call -->
        <xsl:call-template name="generate-rows">
            <xsl:with-param name="values" select="substring-after($values, $delimiter)"/>
        </xsl:call-template>
    </xsl:if>               
</xsl:template>
</xsl:stylesheet>

编辑:

鉴于修改后的输入,将generate-rows模板更改为:

<xsl:template name="generate-rows">
    <xsl:param name="values"/>
    <xsl:param name="delimiter" select="';#'"/>    
    <xsl:variable name="token" select="substring-before(substring-after(concat($values, $delimiter), $delimiter), $delimiter)" />
    <row id="{@id}" title="{@title}" lookupValue="{$token}" anotherValue="{key('dataset2', $token)/@anotherValue}"/>
    <xsl:if test="contains(substring-after($values, $delimiter), $delimiter)">
        <!-- recursive call -->
        <xsl:call-template name="generate-rows">
            <xsl:with-param name="values" select="substring-after(substring-after($values, $delimiter), $delimiter)"/>
        </xsl:call-template>
    </xsl:if>               
</xsl:template>

相关内容

  • 没有找到相关文章

最新更新