如何在连续出现的同时测量“listBulleted"元素 [英] HOW TO MEARGE THE 'listBulleted' ELEMENT WHILE COMING CONSCUTVELY

查看:27
本文介绍了如何在连续出现的同时测量“listBulleted"元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

元素 'listBulleted' 具有相同的父元素,在这里我们试图只合并那些具有连续/计数的 'listBulleted' 元素,否则保持原样:

注意:我们正在创建特定的 ''模板,以便我们可以轻松地移动/添加其他 xslt.

输入 XML:

<?xml version="1.0" encoding="UTF-8"?>
<root>
<listBulleted>
    <listItem><para flow="new"><emphasis bold="yes">Design.</emphasis> Approval of the specific design of the tiebacks or underpinning.</para>
        <listBulleted>
            <listItem><para flow="new">The location of the tiebacks.</para></listItem>
            <listItem><para flow="new">The design of underpinning will be critical.</para></listItem>
        </listBulleted></listItem>
    <listItem><para flow="new"><emphasis bold="yes">Design Professionals and Contractors.</emphasis>.</para></listItem>
</listBulleted>
<listBulleted>
    <listItem><para flow="new"><emphasis bold="yes">Means of Installation.</emphasis> Approval of the timing.</para></listItem>
</listBulleted>
<listBulleted>
    <listItem><para flow="new"><emphasis bold="yes">Liability for Damages.</emphasis> The constructing party’s.</para></listItem>
</listBulleted>
<listBulleted>
    <listItem><para flow="new"><emphasis bold="yes">Adjacent Property Owner’s Rights</emphasis></para>
        <listBulleted>
            <listItem><para flow="new">An acknowledgment by the constructing party.</para></listItem>
            <listItem><para flow="new">Assurances for the constructing party.</para></listItem>
            <listItem><para flow="new">The assurances described in the preceding recorded.</para></listItem>
        </listBulleted></listItem>
</listBulleted>
<listBulleted>
    <listItem><para flow="new"><emphasis bold="yes">Insurance.</emphasis> Description.</para></listItem>
</listBulleted>
</root>

预期输出:

<?xml version="1.0" encoding="UTF-8"?>
<root>
<listBulleted>
    <listItem><para flow="new"><emphasis bold="yes">Design.</emphasis> Approval of the specific design of the tiebacks or underpinning.</para>
        <listBulleted>
            <listItem><para flow="new">The location of the tiebacks.</para></listItem>
            <listItem><para flow="new">The design of underpinning will be critical.</para></listItem>
        </listBulleted></listItem>
    <listItem><para flow="new"><emphasis bold="yes">Design Professionals and Contractors.</emphasis>.</para></listItem>
    <listItem><para flow="new"><emphasis bold="yes">Means of Installation.</emphasis> Approval of the timing.</para></listItem>
    <listItem><para flow="new"><emphasis bold="yes">Liability for Damages.</emphasis> The constructing party’s.</para></listItem>
    <listItem><para flow="new"><emphasis bold="yes">Adjacent Property Owner’s Rights</emphasis></para>
        <listBulleted>
            <listItem><para flow="new">An acknowledgment by the constructing party.</para></listItem>
            <listItem><para flow="new">Assurances for the constructing party.</para></listItem>
            <listItem><para flow="new">The assurances described in the preceding recorded.</para></listItem>
        </listBulleted></listItem>
    <listItem><para flow="new"><emphasis bold="yes">Insurance.</emphasis> Description.</para></listItem>
</listBulleted>
</root>

XSLT 代码:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">

<xsl:template match="node()|@*">
    <xsl:copy>
        <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="listBulleted">
    <listBulleted>
        <xsl:apply-templates select="@*"/>
        <xsl:apply-templates/>
        <xsl:if test="following-sibling::node()[1][self::listBulleted]">
            <xsl:apply-templates select="following-sibling::node()[1][self::listBulleted]/node()"/>
        </xsl:if>
    </listBulleted>
</xsl:template>
<xsl:template match="listBulleted[preceding-sibling::node()[1][self::listBulleted]]"/>

</xsl:stylesheet>

参考网址: https://xsltfiddle.liberty-development.net/6q1S8Az/1

推荐答案

教科书方式是group-adjacent:

<xsl:template match="*[listBulleted]">
    <xsl:copy>
        <xsl:for-each-group select="*" group-adjacent=". instance of element(listBulleted)">
            <xsl:choose>
                <xsl:when test="current-grouping-key()">
                    <xsl:copy>
                        <xsl:apply-templates select="current-group()/node()"/>
                    </xsl:copy>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:apply-templates select="current-group()"/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:for-each-group>
    </xsl:copy>
</xsl:template>

https://xsltfiddle.liberty-development.net/6q1S8Az/2

它与 listBulleted 不匹配,因为它不是您需要分组的容器.

It doesn't match on listBulleted, however, as that is not the container where you need to group.

这篇关于如何在连续出现的同时测量“listBulleted"元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆