这将复制任何名称的第一个非重复simpleType,但对于“nametype”complexType更显式一点:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="core AcRec"
xmlns:core="foo" xmlns:AcRec="bar">
<xsl:key name="simpleTypes" match="xs:simpleType" use="@name"/>
<xsl:template match="/xs:schema">
<xsl:copy>
<xsl:copy-of select="xs:complexType[@name='NameType'][1]"/>
<xsl:apply-templates />
<xsl:copy-of select="//xs:simpleType[generate-id(.) = generate-id(key('simpleTypes', @name)[1])]" />
</xsl:copy>
</xsl:template>
<xsl:template match="*[name()!='xs:simpleType' and name()!='xs:schema' and @name!='NameType']">
<xsl:copy>
<xsl:apply-templates select="*|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*">
<xsl:copy-of select="." />
</xsl:template>
<xsl:template match="*"/>
</xsl:stylesheet>
请注意,默认模板将被重写,这样您就不会得到“nametype”不需要的子项。