您好我有一个问题涉及使用XSLT将输入XML转换为输出XML并仅删除某些元素的换行符和缩进。
我想说明一下我的问题:
输入:
<LISTESTOF>
<ICSGROUP>
<ICSNUM>1</ICSNUM>
<ICSDKNAME>A1</ICSDKNAME>
<ICSUKNAME>B2</ICSUKNAME>
</ICSGROUP>
<ICSGROUP>
<ICSNUM>2</ICSNUM>
<ICSDKNAME>B1</ICSDKNAME>
<ICSUKNAME>B2</ICSUKNAME>
</ICSGROUP>
</LISTESTOF>
输出:
<LISTESTOF>
<ICSGROUP><ICSNUM>1</ICSNUM>
<ICSDKNAME>A1</ICSDKNAME>
<ICSUKNAME>B2</ICSUKNAME></ICSGROUP>
<ICSGROUP><ICSNUM>2</ICSNUM>
<ICSDKNAME>B1</ICSDKNAME>
<ICSUKNAME>B2</ICSUKNAME></ICSGROUP>
</LISTESTOF>
到目前为止我的XSLT文件:
<?xml version="1.0" encoding="UTF-8"?>
<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="no"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="LISTESTOF">
<xsl:value-of select="'
'" /><LISTESTOF><xsl:apply-templates select="ICSGROUP"/></LISTESTOF>
</xsl:template>
<xsl:template match="ICSGROUP">
<xsl:value-of select="'
'" /><ICSGROUP><xsl:apply-templates select="ICSNUM"/><xsl:value-of select="'
'" /><xsl:apply-templates select="ICSDKNAME"/><xsl:value-of select="'
'" /><xsl:apply-templates select="ICSUKNAME"/></ICSGROUP>
</xsl:template>
<xsl:template match="ICSNUM">
<ICSNUM><xsl:value-of select="."/></ICSNUM>
</xsl:template>
<xsl:template match="ICSDKNAME">
<ICSDKNAME><xsl:value-of select="."/></ICSDKNAME>
</xsl:template>
<xsl:template match="ICSUKNAME">
<ICSUKNAME><xsl:value-of select="."/></ICSUKNAME>
</xsl:template>
</xsl:stylesheet>
有更清洁的解决方案吗?未定义的元素会发生什么?他们会消失吗?有什么建议?提前谢谢!
答案 0 :(得分:3)
我首先要删除所有仅空白文本节点
<xsl:strip-space elements="*"/>
然后有一个标识模板来复制从输入到输出的所有内容(在删除空白之后),除非另有说明
<xsl:template match="@*|node()" name="ident">
<xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
</xsl:template>
现在为在之前添加新元素的元素添加特定模板
<xsl:template match="ICSGROUP|ICSDKNAME|ICSUKNAME">
<xsl:text>
</xsl:text>
<xsl:call-template name="ident"/>
</xsl:template>
LISTESTOF
的特殊内容,用于在结束标记之前添加额外的换行符
<xsl:template match="LISTESTOF">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
<xsl:text>
</xsl:text>
</xsl:copy>
</xsl:template>