如何使用XSLT 1.0将XML节点分成2个

时间:2018-07-31 00:33:34

标签: xml xslt xslt-1.0

我有一个带有子元素的XML节点,我需要将其分解为两个 像这样

<node margin="5pt" color="red">with some text and <seperator/> where the element continues</node>

结果应该是

<node margin="5pt" color="red">with some text and </node>
<node margin="5pt" color="red">where the element continues</node>

1 个答案:

答案 0 :(得分:0)

以下XSLT 1.0样式表将拆分内容,并生成与node元素(即{{3} })

text()