我对XSLT很陌生,并试图转换这个XML:
<Company>
<Employee>
<name>Jane</name>
<id>200</id>
<title>Dir</title>
<name>Joe</name>
<id>100</id>
<title>Mgr</title>
<name>Sue</name>
<id>300</id>
<title>Analyst</title>
</Employee>
</Company>
对于此预期输出:
<Company>
<Employee>
<name>Jane</name>
<id>200</id>
<title>Dir</title>
</Employee>
<Employee>
<name>Joe</name>
<id>100</id>
<title>Mgr</title>
</Employee>
<Employee>
<name>Sue</name>
<id>300</id>
<title>Analyst</title>
</Employee>
</Company>
任何帮助将不胜感激,谢谢!
假设它们总是以三人为一组,您可以执行以下操作:
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="*"/>
<xsl:template match="/Company">
<xsl:copy>
<xsl:for-each select="Employee/name">
<Employee>
<xsl:copy-of select=". | following-sibling::id[1] | following-sibling::title[1]"/>
</Employee>
</xsl:for-each>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
或更通用:
<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="*"/>
<xsl:param name="group-size" select="3" />
<xsl:template match="/Company">
<xsl:copy>
<xsl:for-each select="Employee/*[position() mod $group-size = 1]">
<Employee>
<xsl:copy-of select=". | following-sibling::*[position() < $group-size]"/>
</Employee>
</xsl:for-each>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>