我需要使用xsl转换来转换xml数据。我有一些包含文本和子元素的节点。
我无法将子元素之间的文本包装成separat标记标签
…
<content>
some text 1
<child>child 1</child>
some text 2
<child>child 2</child>
some text 3
<child>child 3</child>
some text 4
</content>
…
所需的输出将是:
…
<markup>some text 1</markup>
<child>child 1</child>
<markup>some text 2</markup>
<child>child 2</child>
<markup>some text 3</markup>
<child>child 3</child>
<markup>some text 4</markup>
…
我尝试了以下操作:
<xsl:template match="content">
<xsl:for-each select="./text()">
<markup>
<xsl:value-of select="." />
</markup>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="child">
…
</xsl:template>
结果现在有一些重复的内容:
<markup>some text 1</markup>
<markup>some text 2</markup>
<markup>some text 3</markup>
<markup>some text 4</markup>
some text 1<child>child 1</child>some text 2<child>child 2</child>some text 3<child>child 3</child>some text 4
答案 0 :(得分:0)
尝试以下方法:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="content/text()">
<markup>
<xsl:value-of select="." />
</markup>
</xsl:template>
</xsl:stylesheet>