gpt4 book ai didi

xslt - 使用 XSLT 合并相邻的兄弟节点

转载 作者:行者123 更新时间:2023-12-04 23:10:24 25 4
gpt4 key购买 nike

我有一个问题让我非常头疼。请帮我。输入是:

<body>
<p class="section"> section 1 </p>
<p class="code"> some code </p>
<p class="code"> following code </p>
<p class="code"> following code </p>
<p class="section"> section 2 </p>
<p class="code"> other code </p>
<p class="code"> following code </p>
<p class="code"> following code </p>
<p class="section"> section 3 </p>
<p class="code"> still other code </p>
<p class="code"> following </p>
<p class="code"> following </p>
</body>

我想要的输出:
<body>
<p class="section"> section 1 </p>
<pre> some code following code following code </pre>
<p class="section"> section 2 </p>
<pre> other code following code following code </pre>
<p class="section"> section 3 </p>
<pre> still other code following following </pre>
</body>

问题是崩溃到 <pre>标记所有相邻的 <p class="code">标签。不要找到使用 XSLT 执行此操作的方法。您认为存在解决方案吗?

最佳答案

你不需要重建你的 XML,看看这里:XSLT Grouping Siblings .

关于xslt - 使用 XSLT 合并相邻的兄弟节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2091951/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com