我有两个xml文件,比如 file1.xml ,如下所示:
<?xml version="1.0"?>
<root >
<text id='a'>This is to be replaced</text>
<note>This should not be touched</note>
<text id='b'>This is intact</text>
</root>
file2.xml 如下
<?xml version="1.0"?>
<root >
<text id='a'>Replacement Text</text>
<note>This is a personal note</note>
</root>
我希望输出格式为
的xml文件的Output.xml
<?xml version="1.0"?>
<root>
<text id='a'>Replacement Text</text>
<note>This should not be touched</note>
<text id='b'>This is intact</text>
</root>
请帮助我使用xsl来获得所需的输出。这不是作业,我试图理解xslt。
答案 0 :(得分:1)
如果您不知道自己的XSLT处理器版本,请运行此转换并报告结果......
<xsl:stylesheet version = "1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<xsl:output method = "text" />
<xsl:template match = "/" >
<xsl:text>Version : </xsl:text><xsl:value-of select = "system-property('xsl:version')" /><xsl:text >
</xsl:text>
<xsl:text>Vendor : </xsl:text><xsl:value-of select = "system-property('xsl:vendor')" /><xsl:text >
</xsl:text>
<xsl:text>URL : </xsl:text><xsl:value-of select = "system-property('xsl:vendor-url')" /><xsl:text >
</xsl:text>
<xsl:text>MS ver : </xsl:text><xsl:value-of select = "system-property('msxsl:version')" /><xsl:text >
</xsl:text>
</xsl:template>
</xsl:stylesheet>
这未经过测试,但应该有效......
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" omit-xml-declaration="yes" />
<xsl:strip-space elements="*" />
<xsl:param name="url-of-file2" />
<xsl:variable name="file2" select="document($url-of-file2)" />
<xsl:template match="@*|node()" name="ident">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[@id]">
<xsl:variable name="ele" select="name()" />
<xsl:variable name="id" select="@id" />
<xsl:variable name="replacement-node" select="($file2//*[name()=$ele][@id=$id])[1]" />
<xsl:choose>
<xsl:when test="$replacement-node">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:copy-of select="$replacement-node/text()"/>
<xsl:apply-templates select="*|comment()|processing-instruction()"/>
</xsl:copy>
</xsl:when>
<xsl:otherwise><xsl:call-template name="ident" /></xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
答案 1 :(得分:1)
此转化:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="vReps" select="document('file:///c:/temp/delete/file2.xml')/*/*[1]"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="text[@id='a']/text()">
<xsl:value-of select="$vReps"/>
</xsl:template>
</xsl:stylesheet>
应用于此XML文档(提供的file1.xml):
<root>
<text id='a'>This is to be replaced</text>
<note>This should not be touched</note>
<text id='b'>This is intact</text>
</root>
并且提供的file2.xml位于c:\temp\delete\file2.xml
:
<root>
<text id='a'>Replacement Text</text>
<note>This is a personal note</note>
</root>
会产生想要的正确结果:
<root>
<text id="a">Replacement Text</text>
<note>This should not be touched</note>
<text id="b">This is intact</text>
</root>
<强>解释强>:
使用和覆盖 identity rule 。
使用标准XSLT函数 document()
。