我想知道如何编写XSLT根据这些要求将
XML文件拆分成多个
XML文件:
> file1.xml – 类型= Natyral的湖泊
> file2.xml – 类型=人造的湖泊
> file3.xml – 类型=冰川的湖泊
XML输入文件是:
<Lakes> <Lake> <id>1</id> <Name>Caspian</Name> <Type>Natyral</Type> </Lake> <Lake> <id>2</id> <Name>Moreo</Name> <Type>Glacial</Type> </Lake> <Lake> <id>3</id> <Name>Sina</Name> <Type>Artificial</Type> </Lake> </Lakes>
使用XSLT 2.0,像这样的样式表:
原文链接:https://www.f2er.com/xml/292217.html<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <xsl:for-each-group select="Lakes/Lake" group-by="Type"> <xsl:result-document href="file{position()}.xml"> <Lakes> <xsl:copy-of select="current-group()"/> </Lakes> </xsl:result-document> </xsl:for-each-group> </xsl:template> </xsl:stylesheet>
注:xsl:result-document
指令.